Merge version_1 into main #1
@@ -44,7 +44,7 @@ export default function AboutPage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tailor-workplace-background-with-fabric_23-2148827131.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tailor-workplace-background-with-fabric_23-2148827131.jpg?_wi=2"
|
||||
imageAlt="Artisan founder in studio creating handmade garments"
|
||||
mediaAnimation="opacity"
|
||||
metrics={[
|
||||
@@ -123,7 +123,7 @@ export default function AboutPage() {
|
||||
name: "Sophie Laurent",
|
||||
role: "Fashion Enthusiast",
|
||||
testimonial: "The quality is absolutely stunning! I received my handmade dress and it exceeded all expectations. The attention to detail and craftsmanship is evident in every stitch. I feel like I'm wearing art.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-presenting-clothes_23-2149731164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-presenting-clothes_23-2149731164.jpg?_wi=2",
|
||||
imageAlt: "Sophie Laurent customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -131,7 +131,7 @@ export default function AboutPage() {
|
||||
name: "Emma Richardson",
|
||||
role: "Sustainable Fashion Advocate",
|
||||
testimonial: "Finally found a brand that aligns with my values! Every piece is beautifully crafted and sustainably made. The customer service is also exceptional. I'm a customer for life.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorimetry-specialist-with-client-colored-fabric-swaps_23-2150461557.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorimetry-specialist-with-client-colored-fabric-swaps_23-2150461557.jpg?_wi=2",
|
||||
imageAlt: "Emma Richardson customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -139,7 +139,7 @@ export default function AboutPage() {
|
||||
name: "Clara Mendez",
|
||||
role: "Fashion Designer",
|
||||
testimonial: "As a designer myself, I deeply appreciate the artisanal approach. The fabrics are exquisite, the construction is flawless, and the designs are timeless. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-with-plants-vases_23-2147742954.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-with-plants-vases_23-2147742954.jpg?_wi=2",
|
||||
imageAlt: "Clara Mendez customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -147,7 +147,7 @@ export default function AboutPage() {
|
||||
name: "Jessica Wong",
|
||||
role: "Entrepreneur",
|
||||
testimonial: "I've bought multiple pieces and each one is a treasure. The exclusivity of having one-of-a-kind pieces makes me feel special. Worth every penny and more!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-smiling-consumer-enjoying-shopping_1262-17095.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-smiling-consumer-enjoying-shopping_1262-17095.jpg?_wi=2",
|
||||
imageAlt: "Jessica Wong customer testimonial",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -115,7 +115,7 @@ export default function FaqPage() {
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
faqs={faqItems}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg?_wi=3"
|
||||
imageAlt="Clothing size chart measurement guide"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } 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 { Lato } 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 lato = Lato({
|
||||
variable: "--font-lato",
|
||||
@@ -20,6 +24,16 @@ const lato = Lato({
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Shipping & Returns Policy | Artisan & Co.",
|
||||
description: "Learn about Artisan & Co.'s shipping options, delivery times, and hassle-free return policy for handmade fashion pieces.",
|
||||
keywords: "shipping policy, returns policy, handmade clothing, refunds, delivery",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +42,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +56,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,11 +100,11 @@ export default function HomePage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg?_wi=1",
|
||||
imageAlt: "Handmade dress on model showcasing artisan craftsmanship",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-barter-event-exchange-goods_23-2150208200.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-barter-event-exchange-goods_23-2150208200.jpg?_wi=1",
|
||||
imageAlt: "Artisan hands crafting textile with precision",
|
||||
},
|
||||
]}
|
||||
@@ -139,7 +139,7 @@ export default function HomePage() {
|
||||
price: "$185",
|
||||
rating: 5,
|
||||
reviewCount: "24 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg?_wi=1",
|
||||
imageAlt: "Ethereal white linen handmade dress",
|
||||
},
|
||||
{
|
||||
@@ -149,7 +149,7 @@ export default function HomePage() {
|
||||
price: "$195",
|
||||
rating: 5,
|
||||
reviewCount: "18 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg?_wi=1",
|
||||
imageAlt: "Earth-toned handcrafted dress",
|
||||
},
|
||||
{
|
||||
@@ -159,7 +159,7 @@ export default function HomePage() {
|
||||
price: "$155",
|
||||
rating: 5,
|
||||
reviewCount: "32 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg?_wi=1",
|
||||
imageAlt: "Handmade embroidered blouse with artisan detail",
|
||||
},
|
||||
{
|
||||
@@ -169,7 +169,7 @@ export default function HomePage() {
|
||||
price: "$165",
|
||||
rating: 5,
|
||||
reviewCount: "27 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg?_wi=1",
|
||||
imageAlt: "Premium handcrafted silk blouse",
|
||||
},
|
||||
{
|
||||
@@ -179,7 +179,7 @@ export default function HomePage() {
|
||||
price: "$245",
|
||||
rating: 5,
|
||||
reviewCount: "15 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg?_wi=1",
|
||||
imageAlt: "Exclusive matching set artisan coordination",
|
||||
},
|
||||
{
|
||||
@@ -189,7 +189,7 @@ export default function HomePage() {
|
||||
price: "$255",
|
||||
rating: 5,
|
||||
reviewCount: "12 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg?_wi=1",
|
||||
imageAlt: "Handmade sustainable matching pieces",
|
||||
},
|
||||
{
|
||||
@@ -199,7 +199,7 @@ export default function HomePage() {
|
||||
price: "$85",
|
||||
rating: 5,
|
||||
reviewCount: "41 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg?_wi=1",
|
||||
imageAlt: "Handmade artisan textile accessory",
|
||||
},
|
||||
{
|
||||
@@ -209,7 +209,7 @@ export default function HomePage() {
|
||||
price: "$95",
|
||||
rating: 5,
|
||||
reviewCount: "28 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg?_wi=1",
|
||||
imageAlt: "Luxury handcrafted textile shawl",
|
||||
},
|
||||
]}
|
||||
@@ -228,7 +228,7 @@ export default function HomePage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tailor-workplace-background-with-fabric_23-2148827131.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tailor-workplace-background-with-fabric_23-2148827131.jpg?_wi=1"
|
||||
imageAlt="Artisan founder in studio creating handmade garments"
|
||||
mediaAnimation="opacity"
|
||||
metrics={[
|
||||
@@ -307,7 +307,7 @@ export default function HomePage() {
|
||||
name: "Sophie Laurent",
|
||||
role: "Fashion Enthusiast",
|
||||
testimonial: "The quality is absolutely stunning! I received my handmade dress and it exceeded all expectations. The attention to detail and craftsmanship is evident in every stitch. I feel like I'm wearing art.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-presenting-clothes_23-2149731164.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-woman-presenting-clothes_23-2149731164.jpg?_wi=1",
|
||||
imageAlt: "Sophie Laurent customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -315,7 +315,7 @@ export default function HomePage() {
|
||||
name: "Emma Richardson",
|
||||
role: "Sustainable Fashion Advocate",
|
||||
testimonial: "Finally found a brand that aligns with my values! Every piece is beautifully crafted and sustainably made. The customer service is also exceptional. I'm a customer for life.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorimetry-specialist-with-client-colored-fabric-swaps_23-2150461557.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorimetry-specialist-with-client-colored-fabric-swaps_23-2150461557.jpg?_wi=1",
|
||||
imageAlt: "Emma Richardson customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -323,7 +323,7 @@ export default function HomePage() {
|
||||
name: "Clara Mendez",
|
||||
role: "Fashion Designer",
|
||||
testimonial: "As a designer myself, I deeply appreciate the artisanal approach. The fabrics are exquisite, the construction is flawless, and the designs are timeless. Highly recommended!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-with-plants-vases_23-2147742954.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-with-plants-vases_23-2147742954.jpg?_wi=1",
|
||||
imageAlt: "Clara Mendez customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -331,7 +331,7 @@ export default function HomePage() {
|
||||
name: "Jessica Wong",
|
||||
role: "Entrepreneur",
|
||||
testimonial: "I've bought multiple pieces and each one is a treasure. The exclusivity of having one-of-a-kind pieces makes me feel special. Worth every penny and more!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-smiling-consumer-enjoying-shopping_1262-17095.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-smiling-consumer-enjoying-shopping_1262-17095.jpg?_wi=1",
|
||||
imageAlt: "Jessica Wong customer testimonial",
|
||||
},
|
||||
]}
|
||||
@@ -380,7 +380,7 @@ export default function HomePage() {
|
||||
content: "We offer a 30-day return policy for unworn items in original condition. Since each piece is handmade to order, custom pieces may have different terms. See our full policy for details.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg?_wi=1"
|
||||
imageAlt="Size and fitting guide for handmade clothing"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -29,7 +29,7 @@ export default function ProductPage() {
|
||||
price: "$185",
|
||||
rating: 5,
|
||||
reviewCount: "24 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg?_wi=3",
|
||||
imageAlt: "Ethereal white linen handmade dress",
|
||||
description: "Experience the perfect blend of elegance and comfort with our Ethereal Linen Dress. Crafted from premium organic linen, this piece features delicate hand-stitching and a timeless silhouette that works for any occasion.",
|
||||
},
|
||||
@@ -39,7 +39,7 @@ export default function ProductPage() {
|
||||
price: "$195",
|
||||
rating: 5,
|
||||
reviewCount: "18 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg?_wi=3",
|
||||
imageAlt: "Earth-toned handcrafted dress",
|
||||
description: "Channel natural beauty with our Earth Harmony Dress. Dyed with sustainable plant-based colors, this dress celebrates the rich tones of nature while maintaining the highest standards of craftsmanship.",
|
||||
},
|
||||
@@ -49,7 +49,7 @@ export default function ProductPage() {
|
||||
price: "$155",
|
||||
rating: 5,
|
||||
reviewCount: "32 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg?_wi=3",
|
||||
imageAlt: "Handmade embroidered blouse with artisan detail",
|
||||
description: "A true masterpiece, our Embroidered Heritage Blouse showcases intricate hand embroidery inspired by traditional textile arts. Each thread is placed with precision to create a wearable work of art.",
|
||||
},
|
||||
@@ -59,7 +59,7 @@ export default function ProductPage() {
|
||||
price: "$165",
|
||||
rating: 5,
|
||||
reviewCount: "27 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg?_wi=3",
|
||||
imageAlt: "Premium handcrafted silk blouse",
|
||||
description: "Indulge in luxury with our Premium Silk Blouse. Tailored from pure mulberry silk and hand-finished by master craftspeople, this piece epitomizes refined elegance and timeless sophistication.",
|
||||
},
|
||||
@@ -69,7 +69,7 @@ export default function ProductPage() {
|
||||
price: "$245",
|
||||
rating: 5,
|
||||
reviewCount: "15 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg?_wi=3",
|
||||
imageAlt: "Exclusive matching set artisan coordination",
|
||||
description: "Complete your wardrobe with our Matching Luxury Set. Perfectly coordinated pieces in complementary colors and textures, designed to work seamlessly together for effortless elegance.",
|
||||
},
|
||||
@@ -79,7 +79,7 @@ export default function ProductPage() {
|
||||
price: "$255",
|
||||
rating: 5,
|
||||
reviewCount: "12 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg?_wi=3",
|
||||
imageAlt: "Handmade sustainable matching pieces",
|
||||
description: "Built on sustainability principles, our Coordinate Set combines eco-conscious materials with impeccable design. Each piece is crafted to minimize environmental impact without compromising on style.",
|
||||
},
|
||||
@@ -89,7 +89,7 @@ export default function ProductPage() {
|
||||
price: "$85",
|
||||
rating: 5,
|
||||
reviewCount: "41 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg?_wi=3",
|
||||
imageAlt: "Handmade artisan textile accessory",
|
||||
description: "Add versatility to your wardrobe with our Artisan Textile Wrap. Perfect as a shawl, scarf, or layering piece, this handwoven textile brings texture and sophistication to any ensemble.",
|
||||
},
|
||||
@@ -99,7 +99,7 @@ export default function ProductPage() {
|
||||
price: "$95",
|
||||
rating: 5,
|
||||
reviewCount: "28 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg?_wi=3",
|
||||
imageAlt: "Luxury handcrafted textile shawl",
|
||||
description: "Wrapped in luxury, our Premium Fabric Shawl is handcrafted from the finest materials. An investment piece that transcends seasons and trends, perfect for both casual and formal occasions.",
|
||||
},
|
||||
@@ -111,7 +111,7 @@ export default function ProductPage() {
|
||||
price: "$185",
|
||||
rating: 5,
|
||||
reviewCount: "24 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg?_wi=3",
|
||||
imageAlt: "Handmade dress on model showcasing artisan craftsmanship",
|
||||
description: "Discover exclusive, one-of-a-kind pieces made with passion and precision. Every garment tells a story of artisanal craftsmanship.",
|
||||
};
|
||||
@@ -160,7 +160,7 @@ export default function ProductPage() {
|
||||
imageAlt: product.imageAlt,
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-barter-event-exchange-goods_23-2150208200.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-barter-event-exchange-goods_23-2150208200.jpg?_wi=2",
|
||||
imageAlt: "Artisan hands crafting textile with precision",
|
||||
},
|
||||
]}
|
||||
@@ -195,7 +195,7 @@ export default function ProductPage() {
|
||||
price: "$185",
|
||||
rating: 5,
|
||||
reviewCount: "24 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg?_wi=4",
|
||||
imageAlt: "Ethereal white linen handmade dress",
|
||||
},
|
||||
{
|
||||
@@ -205,7 +205,7 @@ export default function ProductPage() {
|
||||
price: "$195",
|
||||
rating: 5,
|
||||
reviewCount: "18 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg?_wi=4",
|
||||
imageAlt: "Earth-toned handcrafted dress",
|
||||
},
|
||||
{
|
||||
@@ -215,7 +215,7 @@ export default function ProductPage() {
|
||||
price: "$155",
|
||||
rating: 5,
|
||||
reviewCount: "32 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg?_wi=4",
|
||||
imageAlt: "Handmade embroidered blouse with artisan detail",
|
||||
},
|
||||
]}
|
||||
@@ -266,7 +266,7 @@ export default function ProductPage() {
|
||||
content: "We offer a 30-day return policy for unworn items in original condition. Since our pieces are handmade to order, custom orders may have different terms. Please contact us for specific return details.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-seamstress-poster-template_23-2149349485.jpg?_wi=2"
|
||||
imageAlt="Size and fitting guide for handmade clothing"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -82,7 +82,7 @@ export default function ShippingReturnsPage() {
|
||||
tag="Help Center"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg?_wi=4"
|
||||
imageAlt="Premium textile and shipping information"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -91,7 +91,7 @@ export default function ShopPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tailoring-items-arrangement-still-life_23-2149647266.jpg?_wi=2",
|
||||
imageAlt: "Handmade collection showcase",
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export default function ShopPage() {
|
||||
price: "$185",
|
||||
rating: 5,
|
||||
reviewCount: "24 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-ripe-tomatoes-blue-cloth_114579-68525.jpg?_wi=2",
|
||||
imageAlt: "Ethereal white linen handmade dress",
|
||||
},
|
||||
{
|
||||
@@ -140,7 +140,7 @@ export default function ShopPage() {
|
||||
price: "$195",
|
||||
rating: 5,
|
||||
reviewCount: "18 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-holding-leaf_23-2147781195.jpg?_wi=2",
|
||||
imageAlt: "Earth-toned handcrafted dress",
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@ export default function ShopPage() {
|
||||
price: "$155",
|
||||
rating: 5,
|
||||
reviewCount: "32 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-blond-female-with-blue-eyes-white-clothes_613910-10588.jpg?_wi=2",
|
||||
imageAlt: "Handmade embroidered blouse with artisan detail",
|
||||
},
|
||||
{
|
||||
@@ -160,7 +160,7 @@ export default function ShopPage() {
|
||||
price: "$165",
|
||||
rating: 5,
|
||||
reviewCount: "27 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-clothing-thrift-store_23-2150952358.jpg?_wi=2",
|
||||
imageAlt: "Premium handcrafted silk blouse",
|
||||
},
|
||||
{
|
||||
@@ -170,7 +170,7 @@ export default function ShopPage() {
|
||||
price: "$245",
|
||||
rating: 5,
|
||||
reviewCount: "15 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fast-fashion-vs-slow-sustainable-fashion_23-2149134029.jpg?_wi=2",
|
||||
imageAlt: "Exclusive matching set artisan coordination",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function ShopPage() {
|
||||
price: "$255",
|
||||
rating: 5,
|
||||
reviewCount: "12 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-spring-wardrobe-switch_23-2150478950.jpg?_wi=2",
|
||||
imageAlt: "Handmade sustainable matching pieces",
|
||||
},
|
||||
{
|
||||
@@ -190,7 +190,7 @@ export default function ShopPage() {
|
||||
price: "$85",
|
||||
rating: 5,
|
||||
reviewCount: "41 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-velvet-texture_23-2149305939.jpg?_wi=2",
|
||||
imageAlt: "Handmade artisan textile accessory",
|
||||
},
|
||||
{
|
||||
@@ -200,7 +200,7 @@ export default function ShopPage() {
|
||||
price: "$95",
|
||||
rating: 5,
|
||||
reviewCount: "28 reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-hands-holding-furoshiki-package_23-2150274516.jpg?_wi=2",
|
||||
imageAlt: "Luxury handcrafted textile shawl",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user