3 Commits

Author SHA1 Message Date
d64ce3bee0 Update src/app/page.tsx 2026-01-22 20:52:04 +00:00
b119713c1c Update src/app/layout.tsx 2026-01-22 20:52:03 +00:00
4533e67c86 Update src/app/globals.css 2026-01-22 20:52:02 +00:00
3 changed files with 8 additions and 8 deletions

View File

@@ -578,7 +578,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-space-grotesk), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-space-grotesk), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Space_Grotesk } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const spaceGrotesk = Space_Grotesk({
variable: "--font-space-grotesk", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -37,7 +37,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${spaceGrotesk.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -1263,4 +1263,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -181,4 +181,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}