diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d8b1035..7072905 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mahsa Delavari - UX/UI Designer | Research-Driven Design", - description: "Mid-to-senior UX/UI designer with 5+ years experience. Specializing in enterprise dashboards and location-based applications with proven research methodology and measurable business impact.", - keywords: "UX designer, UI designer, UX/UI, product design, design thinking, research-driven design, enterprise design, Auckland", - metadataBase: new URL("https://mahsadelavari.com"), - alternates: { - canonical: "https://mahsadelavari.com", - }, - openGraph: { - title: "Mahsa Delavari - UX/UI Designer", - description: "Transform complex requirements into user-centered experiences through research-driven design.", - url: "https://mahsadelavari.com", - siteName: "Mahsa Delavari", - type: "website", - images: [ - { - url: "https://mahsadelavari.com/og-image.png", - alt: "Mahsa Delavari UX/UI Portfolio", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Mahsa Delavari - UX/UI Designer", - description: "5+ years designing web and mobile applications with research-driven methodology.", - images: ["https://mahsadelavari.com/twitter-image.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mahsa Delavari | UX/UI Designer", description: "Portfolio of Mahsa Delavari, UX/UI Designer specializing in enterprise dashboards and location-based applications."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}