aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/layout.tsx
diff options
context:
space:
mode:
authorMahesh Sanikommmu <[email protected]>2025-09-03 19:00:57 -0700
committerMahesh Sanikommmu <[email protected]>2025-09-03 19:00:57 -0700
commit497986524bf059b975dd38ee012ceb7b5b68f88b (patch)
tree54f2df594cae016a6c57d04cac43b14ab1f851c6 /apps/web/app/layout.tsx
parentupdated the text input (diff)
downloadsupermemory-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.tsx10
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