From 92e019d1f05aea9bc133110fdbc0a3c35a7b105d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:11:54 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 -------------------------------------------- 1 file changed, 1416 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 120fd80..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +0,0 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "SocialFlow - Premium Social Media Marketing Agency", description: "Transform your brand's social presence with expert social media marketing. 500+ successful campaigns, 50M+ followers created, 280% avg engagement growth.", keywords: "social media marketing, social media agency, content creation, social strategy, influencer marketing, digital marketing", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "SocialFlow - Premium Social Media Marketing Agency", description: "Expert social media marketing that drives engagement, builds communities, and accelerates business growth.", siteName: "SocialFlow", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/social-media-team-discussing-plan-workplace_23-2147847466.jpg", alt: "SocialFlow - Premium Social Media Agency"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SocialFlow - Premium Social Media Marketing Agency", description: "Transform your brand's social presence with expert social media marketing solutions.", images: ["http://img.b2bpic.net/free-photo/social-media-team-discussing-plan-workplace_23-2147847466.jpg"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -