4 Commits

Author SHA1 Message Date
c7a9c2006a Update src/app/page.tsx 2025-12-27 15:26:26 +00:00
979c11d9df Update src/app/layout.tsx 2025-12-27 15:26:25 +00:00
1e0e0056f5 Update src/app/page.tsx 2025-12-27 15:13:01 +00:00
7ee5033788 Update src/app/layout.tsx 2025-12-27 15:12:59 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins",
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
@@ -48,7 +48,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={poppins.variable}
className={ibmPlexSans.variable}
>
<Tag />
{children}
@@ -1274,4 +1274,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

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