Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 18:02:40 +00:00
parent 479a72d2ac
commit 48c0933084

View File

@@ -26,29 +26,17 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Shop",
id: "/shop",
},
name: "Shop", id: "/shop"},
{
name: "Categories",
id: "/categories",
},
name: "Categories", id: "/categories"},
{
name: "Best Sellers",
id: "/best-sellers",
},
name: "Best Sellers", id: "/best-sellers"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-vector/fast-shop-shopping-cart-trolley-online-shop-logo-ideas-inspiration-logo-design-template-vector-illustration-isolated-white-background_384344-1802.jpg"
logoAlt="NordVita Logo"
@@ -60,37 +48,11 @@ export default function LandingPage() {
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Get In Touch"
title="How Can We Help You?"
description="Have questions about our products or your order? Reach out to our friendly support team. We're here to assist you."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email Address",
required: true,
},
{
name: "subject",
type: "text",
placeholder: "Subject",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 5,
required: true,
}}
inputPlaceholder="Your Name"
buttonText="Send Message"
/>
</div>
@@ -102,25 +64,13 @@ export default function LandingPage() {
sideDescription="Find quick answers to the most frequent inquiries about orders, shipping, and product use."
faqs={[
{
id: "1",
title: "What are your shipping options and costs?",
content: "We offer standard and expedited shipping options. Costs vary based on your location and the selected speed. You can see detailed shipping costs at checkout.",
},
id: "1", title: "What are your shipping options and costs?", content: "We offer standard and expedited shipping options. Costs vary based on your location and the selected speed. You can see detailed shipping costs at checkout."},
{
id: "2",
title: "How do I track my order?",
content: "Once your order has shipped, you will receive an email with a tracking number. You can use this number on our website's 'Track Order' page or the carrier's site.",
},
id: "2", title: "How do I track my order?", content: "Once your order has shipped, you will receive an email with a tracking number. You can use this number on our website's 'Track Order' page or the carrier's site."},
{
id: "3",
title: "What is your return policy?",
content: "We offer a 30-day satisfaction guarantee. If you're not happy with your purchase, you can return it within 30 days for a full refund or exchange. Please see our full Return Policy for details.",
},
id: "3", title: "What is your return policy?", content: "We offer a 30-day satisfaction guarantee. If you're not happy with your purchase, you can return it within 30 days for a full refund or exchange. Please see our full Return Policy for details."},
{
id: "4",
title: "How can I modify or cancel an order?",
content: "To modify or cancel an order, please contact our customer support team as soon as possible. Changes are only possible before the order has been processed for shipping.",
},
id: "4", title: "How can I modify or cancel an order?", content: "To modify or cancel an order, please contact our customer support team as soon as possible. Changes are only possible before the order has been processed for shipping."},
]}
faqsAnimation="slide-up"
textPosition="left"
@@ -132,13 +82,9 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="NordVita"
leftLink={{
text: "Shipping Policy",
href: "#",
}}
text: "Shipping Policy", href: "#"}}
rightLink={{
text: "Return Policy",
href: "#",
}}
text: "Return Policy", href: "#"}}
/>
</div>
</ReactLenis>