Update src/app/layout.tsx

This commit is contained in:
2026-03-05 07:48:34 +00:00
parent 779c0b02a1
commit cd6ae77639

View File

@@ -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({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
className={`${interTight.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}