diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4851f70..cfff186 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { DM_Sans } 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Kat - Social Media Marketing Agency | Brand Growth Specialist", description: "Grow your brand on social media with Kat's strategic content, authentic engagement, and data-driven growth tactics. Helping brands scale on Instagram & TikTok.", keywords: "social media marketing, Instagram growth, TikTok strategy, content creation, brand growth, digital marketing", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Kat - Social Media Marketing Agency", description: "Grow your brand on social media with strategic content and proven growth tactics.", type: "website", siteName: "Kat Marketing"}, - twitter: { - card: "summary_large_image", title: "Kat - Social Media Marketing Agency", description: "Grow your brand on social media with strategic content and proven growth tactics."}, -}; + title: "Kat - Social Media Marketing", description: "Grow your brand with creative content and modern social media marketing strategy."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}