Files
8b2776d9-e76f-4386-b4e5-2b7…/src/app/layout.tsx
2026-06-09 20:26:00 +00:00

71 lines
2.2 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
export const metadata: Metadata = {
title: 'DICE Clothing - Style Meets Confidence',
description: 'Welcome to DICE Clothing, where style meets confidence. Shop our latest collections of T-shirts, Sweatshirts, and more. Join the DICE family and express your unique style.',
keywords: ["DICE Clothing, fashion, apparel, t-shirts, sweatshirts, online store, style, confidence, streetwear, community"],
openGraph: {
"title": "DICE Clothing - Style Meets Confidence",
"description": "Welcome to DICE Clothing, where style meets confidence. Shop our latest collections of T-shirts, Sweatshirts, and more.",
"url": "https://www.diceclothing.com",
"siteName": "DICE Clothing",
"images": [
{
"url": "https://photos.app.goo.gl/CE2UWhN92Cr35rop7",
"alt": "DICE Clothing Hero Banner"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "DICE Clothing - Style Meets Confidence",
"description": "Welcome to DICE Clothing, where style meets confidence. Shop our latest collections of T-shirts, Sweatshirts, and more.",
"images": [
"https://photos.app.goo.gl/CE2UWhN92Cr35rop7"
]
},
robots: {
"index": true,
"follow": true
},
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}