From 191ce114cf9ac0020f9144ae1a06b81b66ba0498 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:02:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 69 +++++----------------------------------------- 1 file changed, 7 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 66e75d4..8adcbfe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}