Update src/app/layout.tsx

This commit is contained in:
2026-03-14 00:33:31 +00:00
parent 5f82449fbe
commit 4d6617b934

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Curve DZ - Fashion Design Platform",
description: "Design custom clothing with pro tools. Sign in with email, Facebook, or Instagram. Create, edit, share fashion designs.",
keywords: "fashion design, clothing design, design platform, custom clothes, fashion tools",
metadataBase: new URL("https://curve-dz.com"),
alternates: {
canonical: "https://curve-dz.com",
},
openGraph: {
title: "Curve DZ - Create Custom Fashion Designs",
description: "Design stunning custom clothing with professional tools. Easy sign-in with email, Facebook, or Instagram.",
url: "https://curve-dz.com",
siteName: "Curve DZ",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/gorgeous-sexy-blond-model-posing-near-cafee_273443-3372.jpg",
alt: "Curve DZ Fashion Design Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "Curve DZ - Fashion Design Platform",
description: "Design custom clothing with powerful professional tools.",
images: [
"http://img.b2bpic.net/free-photo/gorgeous-sexy-blond-model-posing-near-cafee_273443-3372.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}