Files
e10e3700-9e14-4e42-ba61-3c1…/src/app/layout.tsx
2026-06-07 09:35:41 +00:00

72 lines
2.7 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 { Nunito_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'ChicThreads | Elegant Abayas, Handbags & Clothing',
description: 'Discover a curated collection of elegant abayas, sophisticated handbags, and modern apparel that redefines modest fashion. Elevate your style with timeless pieces from ChicThreads.',
keywords: ["Abayas, Handbags, Clothing, Fashion, Modest wear, Women's fashion, Luxury accessories, Online store, E-commerce, Style, ChicThreads"],
openGraph: {
"title": "ChicThreads | Elegant Abayas, Handbags & Clothing",
"description": "Discover a curated collection of elegant abayas, sophisticated handbags, and modern apparel that redefines modest fashion. Elevate your style with timeless pieces from ChicThreads.",
"url": "https://www.chicthreads.com",
"siteName": "ChicThreads",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/fashionable-young-woman-grey-coat-hat-walking-street-city-centre-smiling-true-emotions-stylish-lifestyle-luxury-clothes-elegant-look_197531-1885.jpg",
"alt": "Elegant woman wearing an abaya and carrying a luxury handbag"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "ChicThreads | Elegant Abayas, Handbags & Clothing",
"description": "Discover a curated collection of elegant abayas, sophisticated handbags, and modern apparel that redefines modest fashion. Elevate your style with timeless pieces from ChicThreads.",
"images": [
"http://img.b2bpic.net/free-photo/fashionable-young-woman-grey-coat-hat-walking-street-city-centre-smiling-true-emotions-stylish-lifestyle-luxury-clothes-elegant-look_197531-1885.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}