diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 76bac61..4a6d31c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DevFolio - Full-Stack Designer & Developer Portfolio", description: "Explore my portfolio showcasing 8+ years of experience in digital design, full-stack development, and product strategy. View featured projects and client testimonials.", keywords: "portfolio, designer, developer, full-stack, UX/UI, web design, digital products", metadataBase: new URL("https://devfolio.com"), - alternates: { - canonical: "https://devfolio.com"}, - openGraph: { - title: "DevFolio - Creative Design & Development", description: "Crafting elegant digital experiences. View my projects, skills, and journey.", url: "https://devfolio.com", siteName: "DevFolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhTEX6yiYCGtdp236kX0NYZx3s/a-modern-minimalist-workspace-with-a-lap-1773043751032-69ef0613.png", alt: "DevFolio Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "DevFolio - Full-Stack Designer & Developer", description: "Explore innovative digital products and design work.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhTEX6yiYCGtdp236kX0NYZx3s/a-modern-minimalist-workspace-with-a-lap-1773043751032-69ef0613.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DevFolio | Full-Stack Designer & Developer", description: "Crafting elegant digital experiences. Explore my projects, skills, and journey as a full-stack designer and developer."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -