Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-03 23:52:16 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1407,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
)
}