diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 730a3eb..61303db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index eed0720..773f6be 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';