import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Alexandra Mitchell - Creative Director & Content Creator", description: "Explore Alexandra's profile: 248.5K followers, photography, design, and lifestyle content. Follow for daily inspiration and creative insights.", keywords: "social media profile, content creator, creative director, photography, design", robots: { index: true, follow: true }, openGraph: { title: "Alexandra Mitchell - Creative Director & Content Creator", description: "Join Alexandra's growing community. Follow for daily inspiration, photography, design, and lifestyle content.", type: "profile", siteName: "SocialHub", images: [{ url: "https://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg", alt: "Alexandra Mitchell Profile" }] }, twitter: { card: "summary_large_image", title: "Alexandra Mitchell - Creative Director & Content Creator", description: "Join 248.5K followers. Photography, design, and lifestyle content.", images: ["https://img.b2bpic.net/free-photo/close-up-portrait-young-bearded-man-white-shirt-jacket-posing-camera-with-broad-smile-isolated-gray_171337-629.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}