115 lines
4.3 KiB
TypeScript
115 lines
4.3 KiB
TypeScript
"use client";
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import AboutMetric from '@/components/sections/about/AboutMetric';
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import { Mail, Phone, MapPin, Clock } from 'lucide-react';
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="sharp"
|
|
contentWidth="mediumLarge"
|
|
sizing="largeSmallSizeMediumTitles"
|
|
background="floatingGradient"
|
|
cardStyle="inset"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="dialedweb"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Work", id: "/work" },
|
|
{ name: "About", id: "/about" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-hero" data-section="contact-hero">
|
|
<ContactText
|
|
text="Ready to transform your digital presence? Let's discuss your project and explore how we can bring your vision to life."
|
|
animationType="background-highlight"
|
|
useInvertedBackground="noInvert"
|
|
buttons={[
|
|
{ text: "Schedule a Call", href: "mailto:hello@dialedweb.studio" },
|
|
{ text: "Send us a Message", href: "mailto:hello@dialedweb.studio" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact-info" data-section="contact-info">
|
|
<AboutMetric
|
|
title="Multiple ways to connect with our team. We're here to answer your questions and discuss how we can help achieve your digital goals."
|
|
useInvertedBackground="invertDefault"
|
|
metrics={[
|
|
{ icon: Mail, label: "Email Us", value: "hello@dialedweb.studio" },
|
|
{ icon: Phone, label: "Call Us", value: "+1 (555) 123-4567" },
|
|
{ icon: MapPin, label: "Visit Us", value: "San Francisco, CA" },
|
|
{ icon: Clock, label: "Response Time", value: "Within 24hrs" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="next-steps" data-section="next-steps">
|
|
<ContactText
|
|
text="What happens next? We'll review your requirements, schedule a discovery call, and create a custom proposal tailored to your specific needs and goals."
|
|
animationType="background-highlight"
|
|
useInvertedBackground="noInvert"
|
|
buttons={[
|
|
{ text: "View Our Process", href: "/services" },
|
|
{ text: "See Our Work", href: "/work" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="dialedweb"
|
|
copyrightText="© 2025 dialedweb. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Web Design", href: "/services" },
|
|
{ label: "Development", href: "/services" },
|
|
{ label: "Strategy", href: "/services" },
|
|
{ label: "Marketing", href: "/services" }
|
|
]
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Work", href: "/work" },
|
|
{ label: "Contact", href: "/contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{ label: "Blog", href: "/blog" },
|
|
{ label: "Case Studies", href: "/case-studies" },
|
|
{ label: "Portfolio", href: "/portfolio" },
|
|
{ label: "Insights", href: "/insights" }
|
|
]
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "LinkedIn", href: "https://linkedin.com" },
|
|
{ label: "Twitter", href: "https://twitter.com" },
|
|
{ label: "Instagram", href: "https://instagram.com" },
|
|
{ label: "Email", href: "mailto:hello@dialedweb.studio" }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|