Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-12 02:59:04 +00:00
5 changed files with 70 additions and 37 deletions

View File

@@ -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",
},
]}
/>

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -114,7 +114,7 @@ export default function HomePage() {
price: "$249.99",
rating: 5,
reviewCount: "324",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-male-model-man-dressed-elegant-suit-posing-near-gray-wall_158538-9708.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-male-model-man-dressed-elegant-suit-posing-near-gray-wall_158538-9708.jpg?_wi=1",
imageAlt: "Premium Silk Blazer",
},
{
@@ -124,7 +124,7 @@ export default function HomePage() {
price: "$189.99",
rating: 5,
reviewCount: "287",
imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine-speaking-phone_23-2147793090.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine-speaking-phone_23-2147793090.jpg?_wi=1",
imageAlt: "Tailored Wool Trousers",
},
{
@@ -134,7 +134,7 @@ export default function HomePage() {
price: "$399.99",
rating: 5,
reviewCount: "451",
imageSrc: "http://img.b2bpic.net/free-photo/cozy-sweaters-gold-leaves_169016-5912.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cozy-sweaters-gold-leaves_169016-5912.jpg?_wi=1",
imageAlt: "Luxury Cashmere Sweater",
},
]}
@@ -149,7 +149,7 @@ export default function HomePage() {
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=1"
imageAlt="Aure Gear Atelier"
buttons={[{ text: "Discover Our Values", href: "/about" }]}
useInvertedBackground={true}
@@ -171,21 +171,21 @@ export default function HomePage() {
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=1",
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=1",
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=1",
imageAlt: "Casual Elegance",
},
]}
@@ -278,7 +278,7 @@ export default function HomePage() {
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=1",
},
{
id: "2",
@@ -286,7 +286,7 @@ export default function HomePage() {
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=1",
},
{
id: "3",
@@ -294,7 +294,7 @@ export default function HomePage() {
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=1",
},
{
id: "4",
@@ -356,7 +356,7 @@ export default function HomePage() {
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=1"
imageAlt="Customer Support"
mediaPosition="right"
mediaAnimation="opacity"

View File

@@ -51,7 +51,7 @@ export default function ShopPage() {
price: "$249.99",
rating: 5,
reviewCount: "324",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-male-model-man-dressed-elegant-suit-posing-near-gray-wall_158538-9708.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-male-model-man-dressed-elegant-suit-posing-near-gray-wall_158538-9708.jpg?_wi=2",
imageAlt: "Premium Silk Blazer",
},
{
@@ -61,7 +61,7 @@ export default function ShopPage() {
price: "$189.99",
rating: 5,
reviewCount: "287",
imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine-speaking-phone_23-2147793090.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/crop-man-reading-magazine-speaking-phone_23-2147793090.jpg?_wi=2",
imageAlt: "Tailored Wool Trousers",
},
{
@@ -71,7 +71,7 @@ export default function ShopPage() {
price: "$399.99",
rating: 5,
reviewCount: "451",
imageSrc: "http://img.b2bpic.net/free-photo/cozy-sweaters-gold-leaves_169016-5912.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cozy-sweaters-gold-leaves_169016-5912.jpg?_wi=2",
imageAlt: "Luxury Cashmere Sweater",
},
{
@@ -81,7 +81,7 @@ export default function ShopPage() {
price: "$149.99",
rating: 5,
reviewCount: "198",
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=2",
imageAlt: "Cotton Oxford Shirt",
},
{
@@ -91,7 +91,7 @@ export default function ShopPage() {
price: "$449.99",
rating: 5,
reviewCount: "312",
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=2",
imageAlt: "Wool Peacoat",
},
{
@@ -101,7 +101,7 @@ export default function ShopPage() {
price: "$199.99",
rating: 5,
reviewCount: "267",
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=2",
imageAlt: "Linen Summer Dress",
},
]}
@@ -123,7 +123,7 @@ export default function ShopPage() {
handle: "@alexstyle",
testimonial: "The quality is unmatched and every piece feels like a personal investment in style. I've never been happier with my wardrobe.",
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=2",
},
{
id: "2",
@@ -131,7 +131,7 @@ export default function ShopPage() {
handle: "@jrichards",
testimonial: "Best shopping experience I've had. Exceptional quality and outstanding customer service throughout.",
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=2",
},
{
id: "3",
@@ -139,7 +139,7 @@ export default function ShopPage() {
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=2",
},
]}
/>