import type { Metadata } from "next"; import { Cormorant } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorant = Cormorant({ variable: "--font-cormorant", subsets: ["latin"], }); export const metadata: Metadata = { title: "Alex Johnson | Talented Developer & Designer Portfolio", description: "Explore the portfolio of Alex Johnson, a smart and driven developer with internship experience. View projects, skills, and achievements.", keywords: ["portfolio", "developer", "designer", "internship", "projects", "skills"], metadataBase: new URL("https://alexjohnson.dev"), alternates: { canonical: "https://alexjohnson.dev" }, openGraph: { title: "Alex Johnson | Developer & Designer", description: "A talented professional showcasing projects and expertise", siteName: "Alex Johnson Portfolio", type: "website" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}