Add src/app/contact/page.tsx
This commit is contained in:
122
src/app/contact/page.tsx
Normal file
122
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,122 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import { MessageSquare, Sparkles } from "lucide-react";
|
||||
|
||||
// Define common navigation items and footer columns for consistency across pages
|
||||
const APP_NAV_ITEMS = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" }, { name: "Services", id: "/#features" },
|
||||
{ name: "Portfolio", id: "/#products" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const APP_FOOTER_COLUMNS = [
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Web Development", href: "/#features" },
|
||||
{ label: "Mobile Apps", href: "/#features" },
|
||||
{ label: "Source Code", href: "/#products" },
|
||||
{ label: "UI/UX Design", href: "/#features" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Portfolio", href: "/#products" },
|
||||
{ label: "Pricing", href: "/#pricing" },
|
||||
{ label: "Testimonials", href: "/#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com/albertdev" },
|
||||
{ label: "Twitter", href: "https://twitter.com/albertdev" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={APP_NAV_ITEMS}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg"
|
||||
logoAlt="Albert Dev logo"
|
||||
brandName="Albert Dev"
|
||||
bottomLeftText="Your Digital Partner"
|
||||
bottomRightText="hello@albertdev.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-main" data-section="contact-main">
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
title="Let's Build Something Amazing Together."
|
||||
description="Have a project in mind, a question about our services, or just want to say hello? Reach out to us using the form below, and we'll get back to you promptly."
|
||||
tagIcon={MessageSquare}
|
||||
background={{ variant: "downward-rays-static-grid" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/creative-image-successful-project-manager_171337-12497.jpg"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Your email address"
|
||||
buttonText="Send Message"
|
||||
termsText="By sending a message, you agree to our Privacy Policy and Terms of Service."
|
||||
onSubmit={(email) => console.log("Contact form submitted with email:", email)} // Placeholder
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-faq" data-section="contact-faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1", title: "What types of projects does Albert Dev specialize in?", content: "Albert Dev specializes in custom web application development, mobile app development (iOS/Android), and providing high-quality source code solutions. We cater to businesses seeking innovative, scalable, and user-centric digital products."},
|
||||
{
|
||||
id: "faq2", title: "What is your development process like?", content: "Our process typically involves discovery and planning, UI/UX design, agile development sprints, rigorous testing, deployment, and ongoing support. We ensure transparency and collaboration at every stage."},
|
||||
{
|
||||
id: "faq3", title: "Do you offer post-launch support and maintenance?", content: "Yes, we offer comprehensive post-launch support and maintenance packages. This includes bug fixes, performance monitoring, security updates, and feature enhancements to ensure your application remains optimal."},
|
||||
{
|
||||
id: "faq4", title: "How can I get a quote for my project?", content: "To get a detailed quote, please fill out our contact form or email us directly with a brief description of your project requirements. We'll schedule a discovery call to understand your needs better."},
|
||||
]}
|
||||
title="Still Have Questions?"
|
||||
description="Check out our frequently asked questions, or feel free to reach out to us directly for more personalized assistance."
|
||||
tag="Common Inquiries"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="http://img.b2bpic.net/free-photo/office-supplies-black-table_171337-13076.jpg"
|
||||
logoAlt="Albert Dev logo"
|
||||
logoText="Albert Dev"
|
||||
columns={APP_FOOTER_COLUMNS}
|
||||
copyrightText="© 2024 Albert Dev. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user