Files
678fd69a-9d89-4580-851a-ab9…/src/app/layout.tsx
2026-04-07 23:40:10 +00:00

50 lines
1.4 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 { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
export const metadata: Metadata = {
title: 'Everthread Vintage | Timeless Curated Apparel',
description: 'Premium curated vintage streetwear. High-quality, one-of-one pieces sourced for longevity. Join the drop list for early access.',
openGraph: {
"title": "Everthread Vintage | Timeless Curated Apparel",
"description": "Premium curated vintage streetwear. Handpicked pieces that never expire.",
"siteName": "Everthread Vintage",
"type": "website"
},
};
const poppins = Poppins({
variable: "--font-poppins",
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={`${poppins.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}