diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e071b8b..f740fcc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Instagram Seller - Professional Growth Services", description: "Grow your Instagram presence with professional seller solutions. Authentic followers, engagement optimization, and content strategy. Call 628-422-5489.", keywords: "instagram seller, instagram growth, follower growth, instagram marketing, content creator services", metadataBase: new URL("https://instasellerpro.com"), - openGraph: { - title: "Instagram Seller - Professional Growth Services", description: "Grow your Instagram presence with authentic followers and professional strategies", url: "https://instasellerpro.com", siteName: "InstaSeller Pro", type: "website"}, - twitter: { - card: "summary_large_image", title: "Instagram Seller - Professional Growth Services", description: "Expert Instagram growth solutions for creators and businesses"}, - robots: { - index: true, - follow: true, - }, -}; + title: "InstaSeller Pro", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +