diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a8f9af1..3f551e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "AHIYA M S - Frontend Developer Portfolio", description: "Aspiring MERN stack frontend developer showcasing projects, skills, and expertise in modern web development.", keywords: "frontend developer, MERN stack, React.js, JavaScript, web developer portfolio, Kerala developer", openGraph: { - title: "AHIYA M S - Frontend Developer", description: "Explore my portfolio showcasing MERN stack projects and web development expertise", siteName: "AHIYA M S Portfolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcoteAEtgsCSMNgg19BOrHzPYE/a-professional-headshot-of-a-young-india-1773061543420-465403b9.png", alt: "AHIYA M S - Frontend Developer Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "AHIYA M S - Frontend Developer", description: "MERN Stack Developer | Building Modern Web Experiences", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcoteAEtgsCSMNgg19BOrHzPYE/a-professional-headshot-of-a-young-india-1773061543420-465403b9.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "AHIYA M S - Frontend Developer | MERN Stack Specialist", description: "Aspiring Frontend Developer & MERN Stack Specialist. Building modern, responsive web experiences. Portfolio showcasing full-stack projects and technical expertise."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -