diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a6d6dba..cfdc69c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,22 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import type { Metadata } from 'next'; +import { Analytics } from '@vercel/analytics/react'; export const metadata: Metadata = { - title: "Full-Stack Developer Portfolio | Creative Problem Solver", description: "Explore my portfolio of web applications and digital products. Full-stack developer with 5+ years of experience in React, Node.js, and modern web technologies.", keywords: "developer, portfolio, web development, React, Node.js, full-stack, frontend, backend", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Full-Stack Developer Portfolio", description: "Discover my work building beautiful, responsive digital experiences with clean code and thoughtful design.", type: "website", siteName: "Portfolio", images: [ - { - url: "http://img.b2bpic.net/free-photo/pretty-young-spanish-woman-posing-studia-looking-camera-smiling-wearing-grey-owersized-sweater_633478-2978.jpg", alt: "professional headshot studio lighting clean"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Full-Stack Developer Portfolio", description: "Explore projects in web development, design, and digital innovation.", images: ["http://img.b2bpic.net/free-photo/pretty-young-spanish-woman-posing-studia-looking-camera-smiling-wearing-grey-owersized-sweater_633478-2978.jpg"], - }, + title: 'Portfolio', + description: 'Full-Stack Developer & Creative Problem Solver', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} + +