From 28c5faa648eb7a72038e53f6fd324021fbb7d088 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 23:52:12 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4afa41e..428e687 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,22 @@ -import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -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"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -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: "seli.udep | Japanese Custom Apparel & Design", description: "Handcrafted custom Japanese-inspired apparel combining traditional aesthetics with modern design. Premium personalized clothing by seli.udep.", keywords: "japanese custom apparel, handcrafted clothing, custom streetwear, tokyo fashion, artisan design", openGraph: { - title: "seli.udep | Japanese Custom Apparel & Design", description: "Handcrafted custom Japanese-inspired apparel combining traditional aesthetics with modern design.", siteName: "seli.udep", type: "website"}, - twitter: { - card: "summary_large_image", title: "seli.udep | Japanese Custom Apparel & Design", description: "Handcrafted custom Japanese-inspired apparel combining traditional aesthetics with modern design."}, + title: 'seli.udep - Authentic Japanese Custom Creations', + description: 'Handcrafted custom apparel inspired by Japanese aesthetics and contemporary design. Each piece tells a story of precision, artistry, and cultural respect.', }; export default function RootLayout({ children, -}: Readonly<{ - children: React.ReactNode; -}>) { +}: { + children: React.ReactNode +}) { return ( - - - - - {children} - + + {children}