diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 291afbb..58277ff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,46 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; +import { Tag } from "@/components/utils/Tag"; -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 manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Portfolio — Creative Design Excellence", description: "Innovative digital design solutions showcasing brand strategy, UX/UI design, and product design expertise. Explore featured projects and services.", keywords: "portfolio, graphic design, UX design, brand identity, digital design, creative services", openGraph: { - title: "Portfolio — Creative Design Excellence", description: "Discover innovative design solutions and creative work. Brand strategy, UX/UI, and digital product design.", siteName: "Portfolio", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRowzw9k0ZSJ87n7KX34EwoE1/a-stunning-creative-portfolio-showcasing-1773043068077-12221410.png", alt: "Portfolio showcase"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Portfolio — Creative Design Excellence", description: "Innovative digital design solutions and creative work", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRowzw9k0ZSJ87n7KX34EwoE1/a-stunning-creative-portfolio-showcasing-1773043068077-12221410.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Portfolio", description: "Creative portfolio showcasing design excellence"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +