Update src/app/contact/page.tsx
This commit is contained in:
@@ -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"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,15 +70,11 @@ export default function ContactPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Let's Talk About Your Business\n\nWe're here to help you succeed online. Whether you have questions about our services, need a custom quote, or just want to discuss your business goals, reach out to us. Our team is ready to help you launch your professional website.",
|
||||
},
|
||||
type: "text", content: "Let's Talk About Your Business\n\nWe're here to help you succeed online. Whether you have questions about our services, need a custom quote, or just want to discuss your business goals, reach out to us. Our team is ready to help you launch your professional website."},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Back to Home",
|
||||
href: "/",
|
||||
},
|
||||
text: "Back to Home", href: "/"},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -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() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user