Update src/app/contact/page.tsx

This commit is contained in:
2026-06-02 11:39:34 +00:00
parent 35880a2fcf
commit 4b2ec915be

View File

@@ -26,33 +26,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "Products", name: "Products", id: "/products"},
id: "/products",
},
{ {
name: "About Us", name: "About Us", id: "/about"},
id: "/about",
},
{ {
name: "FAQ", name: "FAQ", id: "/faq"},
id: "/faq",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=y0gkjb" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=y0gkjb"
logoAlt="Style Icons Apparel Logo" logoAlt="Style Icons Apparel Logo"
brandName="Style Icons Apparel" brandName="Style Icons Apparel"
button={{ button={{
text: "Shop Now", text: "Shop Now", href: "/products"}}
href: "/products",
}}
/> />
</div> </div>
@@ -60,16 +48,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Contact Us" tag="Contact Us"
title="Get in Touch" title="Get in Touch"
description="Have a question about an order, design, or collaboration? Our dedicated team is here to provide exceptional support." description="Have a question about an order, design, or collaboration? Our dedicated team is here to provide exceptional support."
buttons={[ buttons={[
{ {
text: "Send us a message", text: "Send us a message", href: "mailto:support@styleiconsapparel.com"},
href: "mailto:support@styleiconsapparel.com",
},
]} ]}
/> />
</div> </div>
@@ -84,28 +69,13 @@ export default function LandingPage() {
tag="Read Our Blog" tag="Read Our Blog"
blogs={[ blogs={[
{ {
id: "b-1", id: "b-1", category: "Music & Fashion", title: "The Influence of Rock on Streetwear", excerpt: "Explore how legendary rock artists shaped the aesthetics of modern streetwear fashion.", imageSrc: "http://img.b2bpic.net/free-photo/music-equalizer-button-multimedia-icon_53876-21280.jpg", imageAlt: "Rock concert crowd in black and white", authorName: "Style Icons Team", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg", date: "October 26, 2023"
category: "Music & Fashion",
title: "The Influence of Rock on Streetwear",
excerpt: "Explore how legendary rock artists shaped the aesthetics of modern streetwear fashion.",
imageSrc: "http://img.b2bpic.net/free-photo/music-equalizer-button-multimedia-icon_53876-21280.jpg",
imageAlt: "Rock concert crowd in black and white",
}, },
{ {
id: "b-2", id: "b-2", category: "Design Process", title: "Behind the Art: Creating Iconic Prints", excerpt: "A deep dive into our artistic process, from concept to the final, wearable masterpiece.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-manila-shawl-fringes_23-2148235352.jpg", imageAlt: "Close-up of t-shirt with intricate graphic design", authorName: "Style Icons Team", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg", date: "October 26, 2023"
category: "Design Process",
title: "Behind the Art: Creating Iconic Prints",
excerpt: "A deep dive into our artistic process, from concept to the final, wearable masterpiece.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-manila-shawl-fringes_23-2148235352.jpg",
imageAlt: "Close-up of t-shirt with intricate graphic design",
}, },
{ {
id: "b-3", id: "b-3", category: "Style Guide", title: "Styling Your Pop Icon Tee for Any Occasion", excerpt: "Tips and tricks to effortlessly incorporate our unique designs into your everyday wardrobe.", imageSrc: "http://img.b2bpic.net/free-vector/minimalist-music-school-labels-template_23-2150065152.jpg", imageAlt: "Stylized drawing of a famous singer silhouette", authorName: "Style Icons Team", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg", date: "October 26, 2023"
category: "Style Guide",
title: "Styling Your Pop Icon Tee for Any Occasion",
excerpt: "Tips and tricks to effortlessly incorporate our unique designs into your everyday wardrobe.",
imageSrc: "http://img.b2bpic.net/free-vector/minimalist-music-school-labels-template_23-2150065152.jpg",
imageAlt: "Stylized drawing of a famous singer silhouette",
}, },
]} ]}
/> />
@@ -119,57 +89,35 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "Shop All", label: "Shop All", href: "/products"},
href: "/products",
},
{ {
label: "Music Legends", label: "Music Legends", href: "/products#music-legends"},
href: "/products#music-legends",
},
{ {
label: "Pop Icons", label: "Pop Icons", href: "/products#pop-icons"},
href: "/products#pop-icons",
},
{ {
label: "Limited Edition", label: "Limited Edition", href: "/products#limited-edition"},
href: "/products#limited-edition",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Our Story", label: "Our Story", href: "/about#story"},
href: "/about#story",
},
{ {
label: "Our Team", label: "Our Team", href: "/about#team"},
href: "/about#team",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Contact Us", label: "Contact Us", href: "/contact"},
href: "/contact",
},
{ {
label: "FAQ", label: "FAQ", href: "/faq"},
href: "/faq",
},
{ {
label: "Shipping & Returns", label: "Shipping & Returns", href: "/faq#shipping"},
href: "/faq#shipping",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "/privacy-policy"},
href: "/privacy-policy",
},
], ],
}, },
]} ]}