diff --git a/src/app/page.tsx b/src/app/page.tsx index 27677bd..f081e60 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,6 +14,23 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; export default function LandingPage() { + const updatedNavItems = [ + { + name: "Home", id: "#home"}, + { + name: "About", id: "#about"}, + { + name: "Products", id: "#products"}, + { + name: "Orders", id: "/order-details"}, + { + name: "Testimonials", id: "#testimonials"}, + { + name: "FAQs", id: "#faqs"}, + { + name: "Contact", id: "#contact"}, + ]; + return (
@@ -278,25 +174,13 @@ export default function LandingPage() { useInvertedBackground={true} faqs={[ { - id: "faq1", - title: "What are your operating hours?", - content: "Shopwel Mart is open from 8:00 AM to 9:00 PM, Monday through Sunday, for your convenience.", - }, + id: "faq1", title: "What are your operating hours?", content: "Shopwel Mart is open from 8:00 AM to 9:00 PM, Monday through Sunday, for your convenience."}, { - id: "faq2", - title: "Do you offer home delivery?", - content: "Currently, we do not offer home delivery, but we are working on introducing this service soon. Please visit our store for your shopping needs.", - }, + id: "faq2", title: "Do you offer home delivery?", content: "Currently, we do not offer home delivery, but we are working on introducing this service soon. Please visit our store for your shopping needs."}, { - id: "faq3", - title: "What is your return policy?", - content: "We accept returns of unused and unopened items within 7 days of purchase, with a valid receipt. Fresh produce returns must be made within 24 hours.", - }, + id: "faq3", title: "What is your return policy?", content: "We accept returns of unused and unopened items within 7 days of purchase, with a valid receipt. Fresh produce returns must be made within 24 hours."}, { - id: "faq4", - title: "Are there any special discounts for bulk purchases?", - content: "Yes, we offer special discounts for bulk purchases on select items. Please speak to our store manager for more details on available offers.", - }, + id: "faq4", title: "Are there any special discounts for bulk purchases?", content: "Yes, we offer special discounts for bulk purchases on select items. Please speak to our store manager for more details on available offers."}, ]} title="Frequently Asked Questions" description="Find quick answers to common questions about shopping at Shopwel Mart, from our operating hours to return policies." @@ -308,14 +192,11 @@ export default function LandingPage() {
@@ -325,62 +206,37 @@ export default function LandingPage() { logoText="Shopwel Mart" columns={[ { - title: "Categories", - items: [ + title: "Categories", items: [ { - label: "Fresh Produce", - href: "#products", - }, + label: "Fresh Produce", href: "#products"}, { - label: "Groceries", - href: "#products", - }, + label: "Groceries", href: "#products"}, { - label: "Household", - href: "#products", - }, + label: "Household", href: "#products"}, { - label: "Dairy & Bakery", - href: "#products", - }, + label: "Dairy & Bakery", href: "#products"}, ], }, { - title: "About Us", - items: [ + title: "About Us", items: [ { - label: "Our Story", - href: "#about", - }, + label: "Our Story", href: "#about"}, { - label: "Why Shopwel", - href: "#features", - }, + label: "Why Shopwel", href: "#features"}, { - label: "Customer Reviews", - href: "#testimonials", - }, + label: "Customer Reviews", href: "#testimonials"}, ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { - label: "Location", - href: "#contact", - }, + label: "Location", href: "#contact"}, { - label: "FAQs", - href: "#faqs", - }, + label: "FAQs", href: "#faqs"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} @@ -390,4 +246,4 @@ export default function LandingPage() {
); -} +} \ No newline at end of file