diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c691e36..aac48d7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -87,7 +87,7 @@ export default function AboutPage() { tag="Our Heritage" tagIcon={Sparkles} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/woman-sitting-studio-sew-cloth_1157-33787.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-sitting-studio-sew-cloth_1157-33787.jpg?_wi=2" imageAlt="DesieFits design studio and artisan team" mediaAnimation="slide-up" metrics={[ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 67b3641..5a948a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,41 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); +export const metadata: Metadata = { + title: "DesieFits - Premium Women's Ethnic & Fashion Clothing", + description: "Shop premium ethnic wear and contemporary women's clothing at DesieFits. Discover sarees, kurtis, lehengas, and more with authentic designs and quality craftsmanship.", + keywords: "women clothing, ethnic wear, sarees, kurtis, lehengas, salwar kameez, traditional dress, women fashion, Indian wear, contemporary clothing", + metadataBase: new URL("https://www.desifits.com"), + alternates: { + canonical: "https://www.desifits.com" + }, + openGraph: { + title: "DesieFits - Premium Women's Ethnic Clothing Store", + description: "Discover premium ethnic and contemporary women's clothing. Authentic designs, quality craftsmanship, and timeless fashion.", + url: "https://www.desifits.com", + siteName: "DesieFits", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-profile-photo-nice-young-girl-with-beautiful-smoky-eyes-fine-jewelry-forehead-wearing-terracotta-hijab-decorated-with-sequins-she-is-posing-sideways-dark-background_639032-1125.jpg", + alt: "DesieFits featured women's clothing collection" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "DesieFits - Premium Women's Fashion", + description: "Shop authentic ethnic wear and contemporary clothing at DesieFits.", + images: [ + "http://img.b2bpic.net/free-photo/overhead-view-man-with-tattoo-his-hand-looking-clothes-hanging-rail_23-2148175651.jpg" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}