Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-05 01:00:11 +00:00

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "../styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover TANTAWY's exclusive collection of premium, timeless clothing designed for the modern individual. Quality craftsmanship and elegant styles.", keywords: "fashion, clothing, premium fashion, designer clothes, elegant wear, women fashion", metadataBase: new URL("https://tantawy.com"),
alternates: {
canonical: "https://tantawy.com"},
openGraph: {
title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover our exclusive collection of premium, timeless clothing designed for the modern individual.", url: "https://tantawy.com", siteName: "TANTAWY", type: "website"},
twitter: {
card: "summary_large_image", title: "TANTAWY - Premium Fashion & Clothing Brand", description: "Discover TANTAWY's exclusive collection of premium clothing and fashion."},
robots: {
index: true,
follow: true,
},
};
title: "TANTAWY - Premium Fashion Brand", description: "Discover exclusive, premium clothing designed for the modern, confident individual"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}