diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c4715a4..8a015b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,21 +1,10 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); @@ -39,9 +28,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 7b4a61a..118cf20 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,16 +11,16 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; export default function LandingPage() { return (