diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 91321cf..48b097e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,9 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; -import { Tag } from "@/components/tag/Tag"; - -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geist_mono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "Portfolio | Creative Design & UX Expertise", description: "Explore innovative design solutions and digital experiences crafted with strategic thinking and creative excellence."}; + title: 'Portfolio', + description: 'Portfolio website', +}; export default function RootLayout({ children, @@ -21,17 +11,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - - - {children} - - - + + {children}