diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-09-03 19:00:57 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-09-03 19:00:57 -0700 |
| commit | 497986524bf059b975dd38ee012ceb7b5b68f88b (patch) | |
| tree | 54f2df594cae016a6c57d04cac43b14ab1f851c6 /apps/web/app/layout.tsx | |
| parent | updated the text input (diff) | |
| download | supermemory-mahesh/app-layout.tar.xz supermemory-mahesh/app-layout.zip | |
few more changesmahesh/app-layout
Diffstat (limited to 'apps/web/app/layout.tsx')
| -rw-r--r-- | apps/web/app/layout.tsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx index 9f8c24a1..9da01b39 100644 --- a/apps/web/app/layout.tsx +++ b/apps/web/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata } from "next"; -import { Inter, JetBrains_Mono } from "next/font/google"; +import { Inter, JetBrains_Mono, Space_Grotesk } from "next/font/google"; import "../globals.css"; import "@ui/globals.css"; import { AuthProvider } from "@lib/auth-context"; @@ -25,6 +25,12 @@ const mono = JetBrains_Mono({ variable: "--font-mono", }); +const spaceGrotesk = Space_Grotesk({ + subsets: ["latin"], + variable: "--font-serif", +}); + + export const metadata: Metadata = { metadataBase: new URL("https://app.supermemory.ai"), description: "Your memories, wherever you are", @@ -39,7 +45,7 @@ export default function RootLayout({ return ( <html lang="en" suppressHydrationWarning> <body - className={`${sans.variable} ${mono.variable} antialiased`} + className={`${sans.variable} ${mono.variable} ${spaceGrotesk.variable} antialiased`} > <ThemeProvider attribute="class" defaultTheme="dark" enableSystem> <AutumnProvider |