diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2f68b2f..4381786 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -87,7 +87,7 @@ export default function AboutPage() { description="KaalChhaya Pictures represents the intersection of luxury and accessibility. We believe premium quality shouldn't be complicated. Founded in 2020, we curate the finest products from around the world to bring you an elevated shopping experience. Each item in our collection is personally selected for its craftsmanship, design excellence, and lasting value." tag="About KaalChhaya" tagIcon={Sparkles} - imageSrc="http://img.b2bpic.net/free-photo/content-model-walking-with-bags_23-2147669890.jpg" + imageSrc="http://img.b2bpic.net/free-photo/content-model-walking-with-bags_23-2147669890.jpg?_wi=2" imageAlt="KaalChhaya Pictures Luxury Retail Space" mediaAnimation="blur-reveal" metrics={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..47d7263 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,58 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Mulish } from "next/font/google"; import { Inter } 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 { Mulish } from "next/font/google"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "KaalChhaya Pictures - Premium Luxury Retail", + description: "Discover curated collections of high-quality luxury products for modern professionals. Experience seamless shopping with premium items and exceptional service.", + keywords: "luxury retail, premium products, online shopping, designer items, curated collections, high-quality goods", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "KaalChhaya Pictures - Premium Luxury Retail", + description: "Handpicked collections of premium, high-quality products designed for discerning customers.", + type: "website", + siteName: "KaalChhaya Pictures", + images: [ + { + url: "http://img.b2bpic.net/free-photo/vertical-decorative-vases-with-protea-billbergia-flowers-with-chinese-folding-fans_181624-37950.jpg", + alt: "KaalChhaya Pictures Premium Collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "KaalChhaya Pictures - Premium Luxury Retail", + description: "Discover luxury products curated for modern professionals.", + images: [ + "http://img.b2bpic.net/free-photo/vertical-decorative-vases-with-protea-billbergia-flowers-with-chinese-folding-fans_181624-37950.jpg", + ], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +61,9 @@ export default function RootLayout({ return ( - + {children}