diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb5017b..a365ffc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ZARAVYA - Wearable Art. Limited Pieces. Hyper Luxury.", - description: "Discover hand-painted luxury fashion pieces. ZARAVYA creates unique, limited-edition wearable art for collectors who appreciate artisanal craftsmanship and exclusivity.", - keywords: "luxury fashion, hand-painted clothing, wearable art, limited edition, designer pieces, artisanal, exclusive fashion", - metadataBase: new URL("https://zaravya.com"), - alternates: { - canonical: "https://zaravya.com", - }, - openGraph: { - title: "ZARAVYA - Wearable Art", - description: "Hand-painted limited edition luxury fashion. Each piece is a unique masterpiece.", - url: "https://zaravya.com", - siteName: "ZARAVYA", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/abstract-liquid-marble-orange-background-diy-experimental-art_53876-103616.jpg", - alt: "ZARAVYA luxury hand-painted wearable art", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ZARAVYA - Wearable Art. Limited Edition Luxury.", - description: "Hand-painted fashion pieces for collectors who appreciate artisanal excellence.", - images: [ - "http://img.b2bpic.net/free-photo/gold-chain-pomegranate_23-2149836417.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ZARAVYA | Wearable Art. Limited Pieces. Hyper Luxury.", description: "Discover ZARAVYA's exclusive collection of hand-painted luxury garments. Each piece is a unique work of art created by master artisans."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -