diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..285eb93 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } 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 { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Premium Social Media Agency | Lumina Social", + description: "Strategic social media solutions to elevate your brand. We drive engagement, growth, and measurable results across all platforms.", + keywords: "social media agency, social media marketing, content creation, paid social advertising, influencer marketing, social media strategy", + metadataBase: new URL("https://luminasocial.com"), + alternates: { + canonical: "https://luminasocial.com", + }, + openGraph: { + title: "Premium Social Media Agency | Lumina Social", + description: "Transform your brand with data-driven social media strategies and creative excellence.", + url: "https://luminasocial.com", + siteName: "Lumina Social", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/african-american-guy-studying-analytics-archived-data-project_482257-121442.jpg", + alt: "Lumina Social - Premium Social Media Agency", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Premium Social Media Agency | Lumina Social", + description: "Strategic social media solutions to elevate your brand and drive results.", + images: [ + "http://img.b2bpic.net/free-photo/african-american-guy-studying-analytics-archived-data-project_482257-121442.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}