diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f1c9f71..8c69f14 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,52 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import ServiceWrapper from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Creative Portfolio | Designer & Digital Storyteller", description: "Explore my creative portfolio featuring brand design, UI/UX, and digital experiences. Beautiful work blending aesthetics with functionality.", keywords: "portfolio, designer, creative, branding, UI/UX, digital design, illustration", openGraph: { - title: "Creative Portfolio | Designer & Digital Storyteller", description: "Explore my creative portfolio featuring brand design, UI/UX, and digital experiences.", siteName: "Portfolio", type: "website"}, - twitter: { - card: "summary_large_image", title: "Creative Portfolio | Designer & Digital Storyteller", description: "Explore my creative portfolio featuring brand design, UI/UX, and digital experiences."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +