Unify typography and refresh product screenshots
This commit is contained in:
+2
-10
@@ -1,7 +1,7 @@
|
||||
import "~/styles/globals.css";
|
||||
|
||||
import { type Metadata, type Viewport } from "next";
|
||||
import { Instrument_Sans, Playfair_Display } from "next/font/google";
|
||||
import { Instrument_Sans } from "next/font/google";
|
||||
|
||||
import { UmamiAnalytics } from "~/components/umami-analytics";
|
||||
|
||||
@@ -10,11 +10,6 @@ const instrumentSans = Instrument_Sans({
|
||||
variable: "--font-instrument-sans",
|
||||
});
|
||||
|
||||
const playfair = Playfair_Display({
|
||||
subsets: ["latin"],
|
||||
variable: "--font-playfair",
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: {
|
||||
default: "Medscribe | Carry the context when care gets complicated",
|
||||
@@ -53,10 +48,7 @@ export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{ children: React.ReactNode }>) {
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${instrumentSans.variable} ${playfair.variable}`}
|
||||
>
|
||||
<html lang="en" className={instrumentSans.variable}>
|
||||
<body className="min-h-screen">
|
||||
{children}
|
||||
<UmamiAnalytics />
|
||||
|
||||
Reference in New Issue
Block a user