diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c4cda6..b9da9c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Nikunj Hadiya - Frontend Developer & Full-Stack Engineer", description: "Frontend Developer with 1+ year experience building scalable React applications. Specializing in React.js, JavaScript, TypeScript, and full-stack solutions. View my projects and connect.", keywords: "frontend developer, React developer, JavaScript, web development, portfolio, full-stack engineer, React.js, UI/UX developer", metadataBase: new URL("https://nikunjhadiya.com"), - alternates: { - canonical: "https://nikunjhadiya.com"}, - openGraph: { - title: "Nikunj Hadiya - Frontend Developer Portfolio", description: "Experienced frontend developer showcasing projects in React, TypeScript, and modern web technologies.", url: "https://nikunjhadiya.com", siteName: "Nikunj Hadiya", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcsVJkFLFCaOqVJJCD1N6mrKep/a-professional-developer-workspace-with--1772904747482-6d47d9ad.png", alt: "Nikunj Hadiya - Frontend Developer Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Nikunj Hadiya - Frontend Developer", description: "Showcasing my journey in web development with React, JavaScript, and full-stack solutions.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcsVJkFLFCaOqVJJCD1N6mrKep/a-professional-developer-workspace-with--1772904747482-6d47d9ad.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Nikunj Hadiya - Frontend Developer", description: "Frontend Developer & Full-Stack Enthusiast building scalable web applications with React.js, JavaScript, and modern web technologies."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -