From b51447d3e422d0570571662802ea923e4eee1883 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 21:11:16 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9307511..caee4dc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, ]} -- 2.49.1 From 0aeb97c478175afb4efc8bed5b7ebb3ac18048d1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 21:11:16 +0000 Subject: [PATCH 2/7] Update src/app/faq/page.tsx --- src/app/faq/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index d3a390d..4a6a031 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -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" -- 2.49.1 From 2a6e3d2f50e8213979a5e27eb6952a18ef0acee3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 21:11:17 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..30220d6 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 { 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 ( - + {children}