Merge version_2 into main #3
@@ -1,74 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Cohaga - Premium Dress Shopping Platform",
|
||||
description: "Discover the future of dress shopping with Cohaga's AI-powered platform. Find perfectly fitting dresses, get personalized recommendations, and enjoy exclusive collections with flexible membership plans.",
|
||||
keywords: "dresses, online shopping, fashion, premium, sizing technology, virtual try-on",
|
||||
metadataBase: new URL("https://cohaga.com"),
|
||||
alternates: {
|
||||
canonical: "https://cohaga.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Cohaga - Premium Dress Shopping Platform",
|
||||
description: "Shop premium dresses with AI-powered sizing technology and personalized recommendations.",
|
||||
url: "https://cohaga.com",
|
||||
siteName: "Cohaga",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/picture-charming-caucasian-lady-sits-black-leather-armchair-poses-camera_132075-9612.jpg",
|
||||
alt: "Cohaga dress shopping platform",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Cohaga - Premium Dress Shopping",
|
||||
description: "AI-powered dress platform with virtual try-on and personalized styling.",
|
||||
images: ["http://img.b2bpic.net/free-photo/picture-charming-caucasian-lady-sits-black-leather-armchair-poses-camera_132075-9612.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Cohaga | Find Your Perfect Dress", description: "Discover premium dresses with AI-powered sizing and personalized recommendations. Shop exclusive collections from emerging designers and established brands."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1436,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function HomePage() {
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
title="Discover Premium Dresses for Every Occasion"
|
||||
description="Cohaga brings you an expertly curated collection of dresses designed for modern women. From casual to couture, find your perfect fit with our intelligent sizing and personalized recommendations."
|
||||
description="Find your perfect dress with Cohaga's AI-powered sizing and personalized recommendations. Cohaga uniquely combines advanced fitting technology, curated designer collections, and intelligent style matching in one platform."
|
||||
buttons={[
|
||||
{ text: "Start Shopping", href: "/products" },
|
||||
{ text: "Learn More", href: "/about" }
|
||||
@@ -256,4 +256,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user