3 Commits

Author SHA1 Message Date
9c5dc834d2 Update src/app/page.tsx 2026-01-07 15:17:28 +00:00
9ccd036379 Update src/app/layout.tsx 2026-01-07 15:17:27 +00:00
bdc148eeda Update src/app/globals.css 2026-01-07 15:17:26 +00:00
3 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -189,4 +189,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}