diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b5b69bd..df46998 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,12 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; -import { Halant } from "next/font/google"; +import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], }); const inter = Inter({ @@ -42,7 +36,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index b4662e9..09832e1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,16 +13,16 @@ import { Gauge, Warehouse, Zap, Trophy } from "lucide-react"; export default function LandingPage() { return (