From cd6ae7763949950fc5eaadc522aa61ed2c758e4d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:48:34 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9352b7b..3ddc99b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - export const metadata: Metadata = { title: "CalmPup™ | Smart Anti-Bark Training Collar for Dogs", description: "Stop excessive barking humanely. CalmPup uses smart vibration technology—no shock, no punishment. 87% reduction in 2 weeks. 30-day guarantee. Order now.", keywords: "dog bark collar, anti-bark training, smart dog collar, stop dog barking, humane training collar, dog training device", metadataBase: new URL("https://calmpup.com"), alternates: { @@ -48,7 +42,7 @@ export default function RootLayout({ {children}