From a8bcdf851e7c18703d6afe6a1f3c22b68bf0a6dd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 07:27:40 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 16 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b37ab7..93302ed 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,33 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; export const metadata: Metadata = { - title: "UI/UX Designer Portfolio – Design & Case Studies", description: "Premium portfolio showcasing UI/UX design expertise, case studies, and humancentered design solutions for innovative digital products.", keywords: "ui ux designer, product design, design systems, case studies, portfolio", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "UI/UX Designer Portfolio", description: "Discover premium digital product design with humancentered approach and proven results.", type: "website", siteName: "Design Studio", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkBqJ9ymvbjbCXOeeaLZcoI1gK/a-modern-minimalist-ui-ux-designer-works-1773127142522-a6e247ac.png", alt: "Designer portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "UI/UX Designer Portfolio", description: "Premium product design and case studies", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkBqJ9ymvbjbCXOeeaLZcoI1gK/a-modern-minimalist-ui-ux-designer-works-1773127142522-a6e247ac.png"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}