diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5c9909..4a7d410 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -49,7 +38,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 1ff206c..6201aff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,16 +14,16 @@ import { CheckCircle, Cpu, Eye, HelpCircle, Quote, Shield, Sparkles, TrendingUp, export default function ArcliqLanding() { return (