diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fb91adf..8fe3ca4 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -10,36 +10,33 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, { name: "Why Us", id: "why-us" }, { name: "Pricing", id: "pricing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Website Design", href: "/" }, - { label: "SEO Optimization", href: "/" }, - { label: "Digital Advertising", href: "/" }, - { label: "Pricing", href: "/" }, + title: "Product", items: [ + { label: "Website Design", href: "/services" }, + { label: "SEO Optimization", href: "/services" }, + { label: "Digital Advertising", href: "/services" }, + { label: "Pricing", href: "#pricing" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Process", href: "/" }, - { label: "Testimonials", href: "/" }, + { label: "Our Process", href: "#process" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -65,9 +62,7 @@ export default function ContactPage() { brandName="BrandLift" navItems={navItems} button={{ - text: "Schedule Meeting", - href: "/contact", - }} + text: "Schedule Meeting", href: "/contact"}} /> @@ -75,15 +70,11 @@ export default function ContactPage() { @@ -95,8 +86,7 @@ export default function ContactPage() { title="Get Started Today" description="Tell us about your business and what you're looking to achieve. One of our experts will reach out to discuss how we can help you succeed online." background={{ - variant: "circleGradient", - }} + variant: "circleGradient"}} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Schedule Meeting" @@ -111,25 +101,13 @@ export default function ContactPage() { features={[ { id: 1, - title: "How quickly can you build my website?", - description: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality.", - imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=5", - imageAlt: "Quick delivery", - }, + title: "How quickly can you build my website?", description: "Most websites are built and launched within 48 hours. We prioritize speed without compromising quality.", imageSrc: "http://img.b2bpic.net/free-vector/web-elements-design_1212-645.jpg?_wi=5", imageAlt: "Quick delivery"}, { id: 2, - title: "What if I need changes after launch?", - description: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan.", - imageSrc: "http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg", - imageAlt: "Ongoing support", - }, + title: "What if I need changes after launch?", description: "We offer flexible payment plans that include ongoing support and updates. You can make changes anytime based on your plan.", imageSrc: "http://img.b2bpic.net/free-vector/team-work-background-flat-style_23-2147763073.jpg", imageAlt: "Ongoing support"}, { id: 3, - title: "Do you work with small businesses?", - description: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget.", - imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=3", - imageAlt: "Small business support", - }, + title: "Do you work with small businesses?", description: "Yes! We specialize in working with small and medium-sized businesses. Our flexible pricing works for any budget.", imageSrc: "http://img.b2bpic.net/free-photo/search-engine-optimization-target-marketing-concept-bokeh-b_1357-304.jpg?_wi=3", imageAlt: "Small business support"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -145,4 +123,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +}