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
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Products",
id: "/products",
},
name: "Products", id: "/products"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=y0gkjb"
logoAlt="Style Icons Apparel Logo"
brandName="Style Icons Apparel"
button={{
text: "Shop Now",
href: "/products",
}}
text: "Shop Now", href: "/products"}}
/>
</div>
@@ -60,16 +48,13 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Contact Us"
title="Get in Touch"
description="Have a question about an order, design, or collaboration? Our dedicated team is here to provide exceptional support."
buttons={[
{
text: "Send us a message",
href: "mailto:support@styleiconsapparel.com",
},
text: "Send us a message", href: "mailto:support@styleiconsapparel.com"},
]}
/>
</div>
@@ -84,28 +69,13 @@ export default function LandingPage() {
tag="Read Our Blog"
blogs={[
{
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",
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"
},
{
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",
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"
},
{
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",
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"
},
]}
/>
@@ -119,57 +89,35 @@ export default function LandingPage() {
{
items: [
{
label: "Shop All",
href: "/products",
},
label: "Shop All", href: "/products"},
{
label: "Music Legends",
href: "/products#music-legends",
},
label: "Music Legends", href: "/products#music-legends"},
{
label: "Pop Icons",
href: "/products#pop-icons",
},
label: "Pop Icons", href: "/products#pop-icons"},
{
label: "Limited Edition",
href: "/products#limited-edition",
},
label: "Limited Edition", href: "/products#limited-edition"},
],
},
{
items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Our Story",
href: "/about#story",
},
label: "Our Story", href: "/about#story"},
{
label: "Our Team",
href: "/about#team",
},
label: "Our Team", href: "/about#team"},
],
},
{
items: [
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Shipping & Returns",
href: "/faq#shipping",
},
label: "Shipping & Returns", href: "/faq#shipping"},
{
label: "Privacy Policy",
href: "/privacy-policy",
},
label: "Privacy Policy", href: "/privacy-policy"},
],
},
]}