Update src/app/contact/page.tsx
This commit is contained in:
@@ -7,6 +7,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import { MessageCircleQuestion } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -27,35 +28,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
href: "/products",
|
||||
},
|
||||
name: "Products", id: "/products"},
|
||||
{
|
||||
name: "Categories",
|
||||
id: "categories",
|
||||
href: "/categories",
|
||||
},
|
||||
name: "Categories", id: "/categories"},
|
||||
{
|
||||
name: "Offers",
|
||||
id: "offers",
|
||||
href: "#offers",
|
||||
},
|
||||
name: "Offers", id: "#offers"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
href: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="CaseBuddy"
|
||||
bottomLeftText="Upgrade Your Style"
|
||||
@@ -70,28 +53,17 @@ export default function LandingPage() {
|
||||
description="Have a question about our products, an order, or just want to say hello? We're here to help!"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
{
|
||||
name: "subject",
|
||||
type: "text",
|
||||
placeholder: "Subject",
|
||||
required: true,
|
||||
name: "subject", type: "text", placeholder: "Subject", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Your Message",
|
||||
rows: 5,
|
||||
name: "message", placeholder: "Your Message", rows: 5,
|
||||
required: true,
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BSsLGGxnv45WOzNAadCwZHfaFW/stylish-and-protective-phone-case-minima-1774493822192-77fdb60a.png?_wi=5"
|
||||
@@ -108,35 +80,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What payment methods do you accept?",
|
||||
content: "We accept major credit/debit cards (Visa, Mastercard), UPI, and Cash on Delivery (COD) across India.",
|
||||
},
|
||||
id: "1", title: "What payment methods do you accept?", content: "We accept major credit/debit cards (Visa, Mastercard), UPI, and Cash on Delivery (COD) across India."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer international shipping?",
|
||||
content: "Currently, CaseBuddy only ships within India. We are working on expanding our services internationally soon!",
|
||||
},
|
||||
id: "2", title: "Do you offer international shipping?", content: "Currently, CaseBuddy only ships within India. We are working on expanding our services internationally soon!"},
|
||||
{
|
||||
id: "3",
|
||||
title: "What is your return policy?",
|
||||
content: "We offer a 7-day hassle-free return policy for unused and undamaged products. Please refer to our Returns & Warranty page for full details.",
|
||||
},
|
||||
id: "3", title: "What is your return policy?", content: "We offer a 7-day hassle-free return policy for unused and undamaged products. Please refer to our Returns & Warranty page for full details."},
|
||||
{
|
||||
id: "4",
|
||||
title: "How can I track my order?",
|
||||
content: "You can track your order using the tracking ID provided in your shipping confirmation email on our Order Tracking page.",
|
||||
},
|
||||
id: "4", title: "How can I track my order?", content: "You can track your order using the tracking ID provided in your shipping confirmation email on our Order Tracking page."},
|
||||
{
|
||||
id: "5",
|
||||
title: "Are your cases compatible with wireless charging?",
|
||||
content: "Yes, most of our cases are designed to be fully compatible with wireless charging, allowing for convenience.",
|
||||
},
|
||||
id: "5", title: "Are your cases compatible with wireless charging?", content: "Yes, most of our cases are designed to be fully compatible with wireless charging, allowing for convenience."},
|
||||
{
|
||||
id: "6",
|
||||
title: "How do I care for my CaseBuddy case?",
|
||||
content: "Wipe your case gently with a soft, damp cloth. Avoid harsh chemicals or abrasive materials to maintain its finish.",
|
||||
},
|
||||
id: "6", title: "How do I care for my CaseBuddy case?", content: "Wipe your case gently with a soft, damp cloth. Avoid harsh chemicals or abrasive materials to maintain its finish."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Browse our FAQs for quick answers to common questions about CaseBuddy products and services."
|
||||
@@ -150,20 +104,15 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
tag="Still Need Help?"
|
||||
title="Our Team is Ready to Assist"
|
||||
description="For urgent inquiries or personalized support, don't hesitate to reach out directly. We value your feedback!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Us: +91-9876543210",
|
||||
href: "tel:+919876543210",
|
||||
},
|
||||
text: "Call Us: +91-9876543210", href: "tel:+919876543210"},
|
||||
{
|
||||
text: "Email Us: support@casebuddy.com",
|
||||
href: "mailto:support@casebuddy.com",
|
||||
},
|
||||
text: "Email Us: support@casebuddy.com", href: "mailto:support@casebuddy.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -172,62 +121,37 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{
|
||||
label: "iPhone Cases",
|
||||
href: "/categories#iphone",
|
||||
},
|
||||
label: "iPhone Cases", href: "/categories#iphone"},
|
||||
{
|
||||
label: "Samsung Cases",
|
||||
href: "/categories#samsung",
|
||||
},
|
||||
label: "Samsung Cases", href: "/categories#samsung"},
|
||||
{
|
||||
label: "OnePlus Cases",
|
||||
href: "/categories#oneplus",
|
||||
},
|
||||
label: "OnePlus Cases", href: "/categories#oneplus"},
|
||||
{
|
||||
label: "Accessories",
|
||||
href: "/categories#accessories",
|
||||
},
|
||||
label: "Accessories", href: "/categories#accessories"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
label: "Blog", href: "/blog"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "/careers",
|
||||
},
|
||||
label: "Careers", href: "/careers"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
{
|
||||
label: "Order Tracking",
|
||||
href: "/order-tracking",
|
||||
},
|
||||
label: "Order Tracking", href: "/order-tracking"},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/faq",
|
||||
},
|
||||
label: "FAQs", href: "/faq"},
|
||||
{
|
||||
label: "Returns & Warranty",
|
||||
href: "/returns",
|
||||
},
|
||||
label: "Returns & Warranty", href: "/returns"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user