diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..508cc83 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,36 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Premium Social Media Agency | SocialElevate", + description: "Transform your brand with strategic social media management, expert content creation, and proven results. Trusted by 150+ premium brands.", + keywords: "social media agency, social media management, social media marketing, content creation, brand strategy, digital marketing, social media services", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Premium Social Media Agency | SocialElevate", + description: "Strategic social media solutions for premium brands. Content creation, community management, and paid advertising.", + type: "website", + siteName: "SocialElevate", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-positive-woman-black-shirt-posing-white-background-high-quality-photo_114579-61008.jpg", + alt: "SocialElevate - Transform Your Brand", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Premium Social Media Agency | SocialElevate", + description: "Strategic social media solutions for premium brands.", + images: [ + "http://img.b2bpic.net/free-photo/portrait-positive-woman-black-shirt-posing-white-background-high-quality-photo_114579-61008.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +62,9 @@ export default function RootLayout({ return ( - + {children}