diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b8d2771..5777e61 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -58,7 +58,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "grid" }} useInvertedBackground={true} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a3zdy1" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=a3zdy1&_wi=2" imageAlt="Fashion store environment" mediaAnimation="blur-reveal" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..bc0b9fb 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,39 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "StyleHub - Premium Online Clothing Store", + description: "Shop premium clothing and fashion with StyleHub. Discover curated collections, authentic brands, and exceptional customer service. Free shipping on orders over $50.", + keywords: "online clothing store, fashion boutique, premium apparel, women's clothing, men's fashion, designer brands", + metadataBase: new URL("https://stylehub.example.com"), + alternates: { + canonical: "https://stylehub.example.com", + }, + openGraph: { + title: "StyleHub - Premium Online Clothing Store", + description: "Discover curated fashion collections with premium quality and exceptional service.", + url: "https://stylehub.example.com", + siteName: "StyleHub", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n3zo80", + alt: "StyleHub Premium Clothing Collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "StyleHub - Premium Online Clothing", + description: "Discover curated fashion collections with premium quality.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n3zo80"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}