diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5af66c7..b0e092e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -89,7 +89,7 @@ export default function AboutPage() { tag="Our Story" tagIcon={Heart} tagAnimation="blur-reveal" - imageSrc="http://img.b2bpic.net/free-photo/inside-business-center-building_181624-330.jpg" + imageSrc="http://img.b2bpic.net/free-photo/inside-business-center-building_181624-330.jpg?_wi=2" imageAlt="Aure Gear Atelier" buttons={[ { @@ -116,21 +116,21 @@ export default function AboutPage() { id: "1", title: "Essentials Collection", tags: ["Timeless", "Versatile"], - imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait_23-2148830395.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait_23-2148830395.jpg?_wi=3", imageAlt: "Essentials Collection", }, { id: "2", title: "Premium Suiting", tags: ["Professional", "Luxe"], - imageSrc: "http://img.b2bpic.net/free-photo/businessman-stairs_23-2147996573.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessman-stairs_23-2147996573.jpg?_wi=3", imageAlt: "Premium Suiting", }, { id: "3", title: "Casual Elegance", tags: ["Modern", "Relaxed"], - imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-young-woman-listening-music-phone-standing-street_23-2148148104.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-young-woman-listening-music-phone-standing-street_23-2148148104.jpg?_wi=3", imageAlt: "Casual Elegance", }, ]} @@ -155,7 +155,7 @@ export default function AboutPage() { handle: "@alexstyle", testimonial: "Aure Gear has completely transformed my wardrobe. The quality is unmatched and every piece feels like a personal investment in style.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/slim-brunette-woman-black-sweater-crossed-arms_613910-7040.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/slim-brunette-woman-black-sweater-crossed-arms_613910-7040.jpg?_wi=3", }, { id: "2", @@ -163,7 +163,7 @@ export default function AboutPage() { handle: "@jrichards", testimonial: "As someone who values both quality and sustainability, Aure Gear checks all the boxes. Their attention to detail is remarkable.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg?_wi=3", }, { id: "3", @@ -171,7 +171,7 @@ export default function AboutPage() { handle: "@sophieluxe", testimonial: "I've tried many premium brands, but Aure Gear's fit and design are incomparable. Worth every penny!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/calm-thoughtful-blonde-young-lady-dark-velvet-pants-white-blouse-looks-into-camera-squats-near-wooden-door_197531-23204.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/calm-thoughtful-blonde-young-lady-dark-velvet-pants-white-blouse-looks-into-camera-squats-near-wooden-door_197531-23204.jpg?_wi=3", }, ]} /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index cd21e70..0de7043 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -89,7 +89,7 @@ export default function ContactPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-laptop_23-2149271186.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-laptop_23-2149271186.jpg?_wi=2" imageAlt="Customer Support" mediaPosition="right" mediaAnimation="opacity" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..71b0b58 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Aure Gear - Premium Clothing Brand | Luxury Fashion", + description: "Discover Aure Gear's premium clothing collection. Luxury fashion crafted with exceptional quality, timeless design, and sustainable materials for the discerning customer.", + keywords: "premium clothing, luxury fashion, designer wear, tailored fashion, sustainable fashion, high-end apparel", + metadataBase: new URL("https://auregear.com"), + alternates: { + canonical: "https://auregear.com", + }, + openGraph: { + title: "Aure Gear - Premium Clothing Brand", + description: "Elevate your style with Aure Gear's curated collection of luxury clothing and accessories.", + url: "https://auregear.com", + siteName: "Aure Gear", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Aure Gear - Premium Clothing", + description: "Luxury fashion for those who demand excellence", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +63,9 @@ export default function RootLayout({ return ( - + {children}