import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Creative Portfolio | Designer & Developer", description: "Explore my portfolio of web design, branding, and digital product work. Crafting beautiful, functional experiences for innovative brands.", keywords: "portfolio, web design, ux ui design, branding, digital design, creative services", metadataBase: new URL("https://yourportfolio.com"), alternates: { canonical: "https://yourportfolio.com" }, openGraph: { title: "Creative Portfolio | Designer & Developer", description: "Explore my portfolio of web design, branding, and digital product work.", url: "https://yourportfolio.com", siteName: "Creative Portfolio", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/elegant-cozy-office-lifestyle_23-2149636247.jpg", alt: "Portfolio showcase" } ] }, twitter: { card: "summary_large_image", title: "Creative Portfolio | Designer & Developer", description: "Explore my portfolio of web design, branding, and digital product work.", images: ["https://img.b2bpic.net/free-photo/elegant-cozy-office-lifestyle_23-2149636247.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}