Files
e9c0fbd0-80c5-49bb-8c6d-e4f…/src/app/contact/page.tsx

124 lines
4.5 KiB
TypeScript

"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import SplitAbout from "@/components/sections/about/SplitAbout";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Mail, Phone, MapPin, Clock } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Team", href: "/team" },
{ label: "Careers", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Blog", href: "#" },
{ label: "Insights", href: "#" },
{ label: "Reports", href: "#" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Sitemap", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="largeSmall"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Get Started", href: "/contact" }}
brandName="Mbatech Ventures"
/>
</div>
<div id="contact-info" data-section="contact-info">
<SplitAbout
title="Get in Touch"
description="Ready to discuss your innovative idea with our team? We're here to help you explore investment opportunities and strategic partnerships. Contact us today."
tag="Contact"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQWpGN0mtQcwwv9J8G9YbvClhd/thriving-startup-ecosystem-visualization-1772525531598-c1fdd4f1.png?_wi=6"
imageAlt="Global collaboration and connection"
mediaAnimation="blur-reveal"
imagePosition="right"
bulletPoints={[
{
title: "Email", description: "hello@mbatech.ventures - We respond within 24 hours", icon: Mail,
},
{
title: "Phone", description: "+1 (555) 123-4567 - Available Monday to Friday", icon: Phone,
},
{
title: "Headquarters", description: "123 Innovation Drive, San Francisco, CA 94105", icon: MapPin,
},
{
title: "Office Hours", description: "9:00 AM - 6:00 PM PT - Schedule a meeting anytime", icon: Clock,
},
]}
buttons={[{ text: "Schedule Call", href: "#" }]}
buttonAnimation="blur-reveal"
ariaLabel="Contact information section"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactCenter
tag="Get in Touch"
title="Ready to Transform Your Vision?"
description="Join the next generation of tech leaders backed by Mbatech Ventures. Contact our team to discuss your innovative idea."
tagAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="your@email.com"
buttonText="Start Conversation"
termsText="We respect your privacy. Unsubscribe at any time."
ariaLabel="Contact form section"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Mbatech Ventures. All rights reserved."
ariaLabel="Footer navigation"
/>
</div>
</ThemeProvider>
);
}