From d885da24792de241e98899af0f59e592934de34c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 17:09:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++++++------------------------------------ 1 file changed, 13 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6fabf59..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Social Media Agency - Strategy & Growth", - description: "Transform your brand with data-driven social media strategies. 500+ successful campaigns, 150% avg engagement growth. Get expert social media management today.", - keywords: "social media agency, social media marketing, content creation, social strategy, brand growth, digital marketing", - openGraph: { - title: "Premium Social Media Agency", - description: "Transform your brand with strategic social media excellence", - siteName: "Social Agency", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Premium Social Media Agency", - description: "Data-driven social media strategies for brand growth", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +