Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85940e40e6 | |||
| 8277a71930 | |||
| 33cccae0b0 | |||
| 25686faacc | |||
| f738150a5e | |||
| c29a8f3715 | |||
| e3e417d097 | |||
| ee5bb2e6d4 | |||
| 5f92b80815 | |||
| 907755c685 | |||
| 0d91e2b274 | |||
| 71812d125a | |||
| 86ffcba6fb |
107
src/app/contact/page.tsx
Normal file
107
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ContactForm from "@/components/form/ContactForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Mail, MessageSquare } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
|
||||
<div className="min-h-screen pt-32 pb-20 px-4 flex flex-col items-center justify-center">
|
||||
<div className="w-full max-w-2xl">
|
||||
<h1 className="text-5xl md:text-6xl font-bold text-center mb-4">Get in Touch</h1>
|
||||
<p className="text-lg text-center text-foreground/70 mb-12">
|
||||
Have a project in mind? We'd love to hear about it. Fill out the form below and we'll get back to you as soon as possible.
|
||||
</p>
|
||||
|
||||
<div id="contact-form" data-section="contact-form" className="mb-16">
|
||||
<ContactForm
|
||||
title="Send us a message"
|
||||
description="Tell us about your project and let's create something amazing together."
|
||||
tag="Contact Us"
|
||||
tagIcon={Mail}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Send Message"
|
||||
termsText="We respect your privacy. We'll only use this information to discuss your project."
|
||||
centered={true}
|
||||
useInvertedBackground={false}
|
||||
onSubmit={(email) => {
|
||||
console.log("Form submitted with email:", email);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-2 gap-8 mb-16">
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Mail className="w-12 h-12 text-primary-cta" />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Email</h3>
|
||||
<p className="text-foreground/70">hello@vortex.com</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<MessageSquare className="w-12 h-12 text-primary-cta" />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Chat</h3>
|
||||
<p className="text-foreground/70">Available on weekdays 9am-5pm EST</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Vortex Web Studio. All rights reserved."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
352
src/app/page.tsx
352
src/app/page.tsx
@@ -1,218 +1,258 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Award, CheckCircle, Shield, Sparkles, Star, Target, TrendingUp, Zap } from "lucide-react";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
|
||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Sparkles, Target, Zap, Award, MessageSquare, HelpCircle } from "lucide-react";
|
||||
|
||||
const assetMap: Record<string, string> = {
|
||||
"hero-gradient": "http://img.b2bpic.net/free-vector/northern-lights-landing-page-template_52683-21888.jpg", "about-image": "http://img.b2bpic.net/free-photo/modern-shop-prepared-live-auction_23-2149947495.jpg", "service-1": "http://img.b2bpic.net/free-vector/northern-sky-landing-page-template_23-2148265087.jpg", "service-2": "http://img.b2bpic.net/free-vector/brand-manual-template-design_23-2149872595.jpg", "service-3": "http://img.b2bpic.net/free-photo/business-manager-working-two-screen-setup-late-night-office_482257-32822.jpg", "testimonial-1": "http://img.b2bpic.net/free-photo/high-angle-smiley-business-male_23-2148479546.jpg", "testimonial-2": "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", "testimonial-3": "http://img.b2bpic.net/free-photo/close-up-serious-businessman-white-shirt-looking-camera-standing-confident_1258-26762.jpg", "testimonial-4": "http://img.b2bpic.net/free-photo/portrait-confident-businessman_1098-21013.jpg", "contact-image": "http://img.b2bpic.net/free-photo/women-working-desk-office-job_23-2149034611.jpg"
|
||||
};
|
||||
|
||||
function getAssetUrl(assetId: string): string {
|
||||
return assetMap[assetId] || "/placeholders/placeholder1.webp";
|
||||
}
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function Home() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="grid"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="semibold"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Work", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Vortex web"
|
||||
bottomLeftText="Innovative Design Studio"
|
||||
bottomRightText="hello@joshuachavez.co"
|
||||
/>
|
||||
</div>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText=" Vortex Web"
|
||||
description="Innovative solutions, effortless experience."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
<HeroLogoBillboard
|
||||
logoText="vortex"
|
||||
description="We help driven founders build the brands of tomorrow through websites, product design & branding."
|
||||
buttons={[
|
||||
{ text: "Work With Me", href: "#contact" }
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc={getAssetUrl("hero-gradient")}
|
||||
imageAlt="Gradient background charcoal to slate"
|
||||
mediaAnimation="opacity"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="https://images.unsplash.com/photo-1633356122544-f134ef2944f5?w=1200&h=600&fit=crop"
|
||||
imageAlt="Hero showcase"
|
||||
frameStyle="card"
|
||||
buttonAnimation="opacity"
|
||||
ariaLabel="Hero section for Joshua Chavez Co design and marketing services"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="About Vortex Web"
|
||||
description="We craft modern, streamlined design and marketing solutions that elevate brands and engage audiences. With a focus on clarity, sophistication, and refined aesthetics, we deliver work that stands out for its elegance and purposeful innovation."
|
||||
tag="About Us"
|
||||
imageSrc={getAssetUrl("about-image")}
|
||||
imageAlt="Modern design studio workspace"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Discover Our Approach", href: "/services" }
|
||||
]}
|
||||
<SplitAbout
|
||||
title="About Our Studio"
|
||||
description="We combine creativity with strategy to deliver exceptional results for our clients."
|
||||
tag="Our Story"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Innovation First", description: "We push boundaries and challenge conventions", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Quality Design", description: "Excellence in every detail of our work", icon: Award,
|
||||
},
|
||||
{
|
||||
title: "Strategic Thinking", description: "Data-driven decisions for maximum impact", icon: Target,
|
||||
},
|
||||
]}
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=700&fit=crop"
|
||||
imageAlt="About us"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
buttons={[
|
||||
{ text: "Explore Our Work", href: "#services" },
|
||||
{ text: "Get in Touch", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTen
|
||||
<FeatureCardTwentyFive
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Web Design & Development", description: "Custom websites that blend aesthetic excellence with seamless user experiences. From concept to launch, we build digital products that convert.", media: { imageSrc: getAssetUrl("service-1") },
|
||||
items: [
|
||||
{ icon: Sparkles, text: "Responsive & Modern Design" },
|
||||
{ icon: Zap, text: "Fast Performance Optimization" },
|
||||
{ icon: Shield, text: "Secure & Scalable Architecture" }
|
||||
title: "Brand Strategy", description: "Crafting compelling brand identities that resonate with your audience", icon: Target,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=400&h=300&fit=crop", imageAlt: "Brand strategy"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?w=400&h=300&fit=crop", imageAlt: "Brand identity"},
|
||||
],
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
id: "2", title: "Brand Strategy & Identity", description: "Strategic branding that defines your market position and creates lasting impressions. We craft cohesive visual identities that resonate with your audience.", media: { imageSrc: getAssetUrl("service-2") },
|
||||
items: [
|
||||
{ icon: Award, text: "Strategic Brand Positioning" },
|
||||
{ icon: CheckCircle, text: "Comprehensive Visual Systems" },
|
||||
{ icon: Star, text: "Consistent Brand Experience" }
|
||||
title: "Web Design", description: "Beautiful, responsive websites that convert visitors into customers", icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=400&h=300&fit=crop", imageAlt: "Web design"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=400&h=300&fit=crop", imageAlt: "UI design"},
|
||||
],
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
id: "3", title: "Digital Marketing Solutions", description: "Data-driven marketing campaigns that amplify your message and drive measurable results. We combine creativity with strategic insights.", media: { imageSrc: getAssetUrl("service-3") },
|
||||
items: [
|
||||
{ icon: TrendingUp, text: "Analytics & Performance Tracking" },
|
||||
{ icon: Target, text: "Targeted Campaign Strategy" },
|
||||
{ icon: Zap, text: "Conversion Optimization" }
|
||||
title: "Marketing", description: "Strategic marketing solutions to grow your business and reach", icon: Award,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&h=300&fit=crop", imageAlt: "Marketing campaign"},
|
||||
{
|
||||
imageSrc: "https://images.unsplash.com/photo-1460925895917-adf4198c868f?w=400&h=300&fit=crop", imageAlt: "Analytics"},
|
||||
],
|
||||
reverse: false
|
||||
}
|
||||
},
|
||||
]}
|
||||
title="Our Services"
|
||||
description="We deliver comprehensive design and marketing solutions tailored to your brand's unique vision and business goals."
|
||||
tag="Services"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
title="Our Services"
|
||||
description="We offer a comprehensive range of design and marketing services"
|
||||
tag="What We Do"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
plans={[
|
||||
{
|
||||
id: "1", price: "$2,999", name: "Starter", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: ["Brand Strategy", "Logo Design", "1 Round of Revisions", "Email Support"],
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,999", name: "Professional", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: [
|
||||
"Complete Brand Identity", "Website Design", "3 Rounds of Revisions", "Priority Support", "Social Media Kit"],
|
||||
},
|
||||
{
|
||||
id: "3", price: "$9,999", name: "Enterprise", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: [
|
||||
"Full Brand Overhaul", "Custom Website Development", "Unlimited Revisions", "24/7 Dedicated Support", "Marketing Campaign", "Analytics & Reporting"],
|
||||
},
|
||||
]}
|
||||
title="Our Pricing"
|
||||
description="Choose the perfect plan for your project"
|
||||
tag="Pricing"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
<TestimonialCardTen
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", role: "Founder", company: "TechStart Ventures", rating: 5,
|
||||
imageSrc: getAssetUrl("testimonial-1"),
|
||||
imageAlt: "Sarah Mitchell, Founder of TechStart Ventures"
|
||||
},
|
||||
id: "1", title: "Transformed Our Brand", quote: "Working with Vortex was transformative. They took our vision and created a brand identity that truly represents our values.", name: "Sarah Johnson", role: "CEO, Tech Startup", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&h=200&fit=crop", imageAlt: "Sarah Johnson"},
|
||||
{
|
||||
id: "2", name: "Marcus Chen", role: "CEO", company: "Innovation Labs", rating: 5,
|
||||
imageSrc: getAssetUrl("testimonial-2"),
|
||||
imageAlt: "Marcus Chen, CEO of Innovation Labs"
|
||||
},
|
||||
id: "2", title: "Exceptional Results", quote: "The website they designed increased our conversions by 40%. Their attention to detail is unmatched.", name: "Michael Chen", role: "Founder, E-commerce Business", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&h=200&fit=crop", imageAlt: "Michael Chen"},
|
||||
{
|
||||
id: "3", name: "Elena Rodriguez", role: "Marketing Director", company: "Global Design Co", rating: 5,
|
||||
imageSrc: getAssetUrl("testimonial-3"),
|
||||
imageAlt: "Elena Rodriguez, Marketing Director at Global Design Co"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Thompson", role: "Creative Director", company: "Brand Alliance", rating: 5,
|
||||
imageSrc: getAssetUrl("testimonial-4"),
|
||||
imageAlt: "James Thompson, Creative Director at Brand Alliance"
|
||||
}
|
||||
id: "3", title: "Professional & Creative", quote: "Vortex delivered beyond our expectations. Their team is professional, responsive, and incredibly creative.", name: "Emma Davis", role: "Marketing Manager, Global Brand", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=200&h=200&fit=crop", imageAlt: "Emma Davis"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "150+", label: "Projects Completed" },
|
||||
{ value: "", label: "" },
|
||||
{ value: "", label: "" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
title="What Our Clients Say"
|
||||
description="Trusted by innovative brands and forward-thinking businesses who value design excellence and strategic marketing."
|
||||
description="Real testimonials from our satisfied clients"
|
||||
tag="Testimonials"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
tagAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Let's Create Something Amazing"
|
||||
description="Ready to transform your vision into reality? Get in touch and let's discuss how we can elevate your brand with innovative design and strategic marketing."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How long does a typical project take?", content: "Project timelines vary depending on scope and complexity. Most brand projects take 4-8 weeks, while website projects typically take 8-12 weeks."},
|
||||
{
|
||||
id: "2", title: "Do you offer revision rounds?", content: "Yes! Revisions are included in all our packages. Starter includes 1 round, Professional includes 3 rounds, and Enterprise includes unlimited revisions."},
|
||||
{
|
||||
id: "3", title: "What's your process?", content: "We follow a collaborative process: Discovery → Strategy → Design → Revisions → Delivery. We keep you involved at every step."},
|
||||
{
|
||||
id: "4", title: "Can you work with remote teams?", content: "Absolutely! We have experience working with teams across different time zones. Communication is seamless through our project management tools."},
|
||||
{
|
||||
id: "5", title: "Do you provide ongoing support?", content: "Yes, we offer post-launch support packages. All our plans include some level of support, with Enterprise including 24/7 dedicated support."},
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your project", rows: 5, required: true }}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Find answers to common questions about our services"
|
||||
textPosition="left"
|
||||
useInvertedBackground={false}
|
||||
imageSrc={getAssetUrl("contact-image")}
|
||||
imageAlt="Modern creative workspace"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
buttonText="Send Message"
|
||||
animationType="smooth"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Joshua Chavez Co"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Web Design", href: "/services" },
|
||||
{ label: "Branding", href: "/services" },
|
||||
{ label: "Marketing", href: "/services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Work", href: "#testimonials" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" }
|
||||
]
|
||||
}
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactText
|
||||
text="Ready to bring your vision to life? Let's create something amazing together."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Get in Touch", href: "/contact" },
|
||||
{ text: "View Portfolio", href: "#services" },
|
||||
]}
|
||||
copyrightText="© 2025 Vortex Web . All rights reserved."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Vortex Web Studio. All rights reserved."
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user