9 Commits

Author SHA1 Message Date
85940e40e6 Update src/app/contact/page.tsx 2026-03-09 21:49:58 +00:00
8277a71930 Update src/app/page.tsx 2026-03-09 21:48:58 +00:00
33cccae0b0 Update src/app/contact/page.tsx 2026-03-09 21:48:58 +00:00
25686faacc Update src/app/page.tsx 2026-03-09 21:46:08 +00:00
f738150a5e Update src/app/layout.tsx 2026-03-09 21:46:08 +00:00
c29a8f3715 Update src/app/contact/page.tsx 2026-03-09 21:46:07 +00:00
e3e417d097 Update src/app/page.tsx 2026-03-09 21:43:52 +00:00
ee5bb2e6d4 Update src/app/layout.tsx 2026-03-09 21:43:51 +00:00
5f92b80815 Update src/app/contact/page.tsx 2026-03-09 21:43:51 +00:00
3 changed files with 274 additions and 353 deletions

View File

@@ -1,254 +1,107 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Mail, Phone, MapPin } from "lucide-react";
import { useState } from "react";
import Textarea from "@/components/form/Textarea";
import ButtonDirectionalHover from "@/components/button/ButtonDirectionalHover/ButtonDirectionalHover";
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() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "/contact" },
];
const [formData, setFormData] = useState({
name: "", email: "", subject: "", message: ""
});
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { name, value } = e.target;
setFormData((prev) => ({ ...prev, [name]: value }));
};
const handleTextareaChange = (value: string) => {
setFormData((prev) => ({ ...prev, message: value }));
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
console.log("Form submitted:", formData);
// Handle form submission logic here
setFormData({ name: "", email: "", subject: "", message: "" });
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="glass-elevated"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
</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">
<HeroSplitTestimonial
background={{ variant: "glowing-orb" }}
title="Get in Touch With Us"
description="Have questions or ready to start your project? We'd love to hear from you. Reach out and let's discuss how we can help transform your vision into reality."
tag="Contact"
imagePosition="right"
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=3"
imageAlt="Contact us"
testimonials={[
{
name: "Quick Response", handle: "We typically reply within 24 hours", testimonial: "Your inquiry is important to us and we prioritize quick, thoughtful responses.", rating: 5,
},
]}
buttons={[
{ text: "Send Message", href: "#contact-form" },
{ text: "Back Home", href: "/" },
]}
mediaAnimation="slide-up"
buttonAnimation="slide-up"
/>
</div>
<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="py-20 px-4 md:px-0">
<div className="max-w-2xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-2 gap-12">
{/* Contact Information */}
<div className="space-y-8">
<div>
<h2 className="text-2xl md:text-3xl font-bold mb-6">Contact Information</h2>
<p className="text-base text-foreground/70 mb-8">
Get in touch with our team. We're here to help and answer any question you might have.
</p>
</div>
<div className="space-y-6">
<div className="flex items-start gap-4">
<div className="flex-shrink-0 mt-1">
<Mail className="w-6 h-6 text-primary-cta" />
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Email</h3>
<p className="text-foreground/70">hello@vortexweb.com</p>
<p className="text-sm text-foreground/50">We'll respond within 24 hours</p>
</div>
</div>
<div className="flex items-start gap-4">
<div className="flex-shrink-0 mt-1">
<Phone className="w-6 h-6 text-primary-cta" />
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Phone</h3>
<p className="text-foreground/70">+1 (555) 123-4567</p>
<p className="text-sm text-foreground/50">Mon-Fri, 9am-6pm EST</p>
</div>
</div>
<div className="flex items-start gap-4">
<div className="flex-shrink-0 mt-1">
<MapPin className="w-6 h-6 text-primary-cta" />
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Office</h3>
<p className="text-foreground/70">123 Design Street</p>
<p className="text-foreground/70">San Francisco, CA 94105</p>
</div>
</div>
<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>
{/* Contact Form */}
<div>
<form onSubmit={handleSubmit} className="space-y-6">
<div>
<label htmlFor="name" className="block text-sm font-medium mb-2">
Full Name
</label>
<input
type="text"
id="name"
name="name"
value={formData.name}
onChange={handleInputChange}
required
className="w-full px-4 py-2 bg-card border border-accent/20 rounded-lg focus:outline-none focus:border-primary-cta transition-colors"
placeholder="John Doe"
/>
</div>
<div>
<label htmlFor="email" className="block text-sm font-medium mb-2">
Email Address
</label>
<input
type="email"
id="email"
name="email"
value={formData.email}
onChange={handleInputChange}
required
className="w-full px-4 py-2 bg-card border border-accent/20 rounded-lg focus:outline-none focus:border-primary-cta transition-colors"
placeholder="john@example.com"
/>
</div>
<div>
<label htmlFor="subject" className="block text-sm font-medium mb-2">
Subject
</label>
<input
type="text"
id="subject"
name="subject"
value={formData.subject}
onChange={handleInputChange}
required
className="w-full px-4 py-2 bg-card border border-accent/20 rounded-lg focus:outline-none focus:border-primary-cta transition-colors"
placeholder="Project inquiry"
/>
</div>
<div>
<label htmlFor="message" className="block text-sm font-medium mb-2">
Message
</label>
<Textarea
value={formData.message}
onChange={handleTextareaChange}
placeholder="Tell us about your project..."
rows={5}
required
/>
</div>
<div className="pt-4">
<ButtonDirectionalHover
text="Send Message"
type="submit"
/>
</div>
</form>
<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>
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Have Questions?"
tagIcon={Mail}
title="Can't Find What You're Looking For?"
description="Check out our FAQ page or reach out directly. Our support team is always ready to assist you."
buttons={[
{ text: "View FAQ", href: "/" },
{ text: "Back Home", href: "/" },
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920&h=600&fit=crop&_wi=2"
imageAlt="Footer background"
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "About", href: "#about" },
],
},
{
title: "Company", items: [
{ label: "Blog", href: "/" },
{ label: "Careers", href: "/" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy", href: "/" },
{ label: "Terms", href: "/" },
{ label: "Security", href: "/" },
],
},
]}
logoText="Vortex Web"
copyrightText="© 2025 Vortex Web. All rights reserved."
/>
</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>
);
}

View File

@@ -1,8 +1,12 @@
import type { Metadata } from "next";
import "./styles/globals.css";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Vortex Web - Digital Solutions", description: "Create exceptional digital experiences with our innovative design and marketing solutions."};
title: "Vortex Web - Design & Marketing Studio", description: "Innovative design and marketing solutions for modern brands"
};
export default function RootLayout({
children,
@@ -10,8 +14,21 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
if (localStorage.getItem('theme') === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
`,
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -1,207 +1,258 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { ArrowRight, Mail, Quote, Package } 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";
export default function Home() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "/contact" },
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
contentWidth="mediumLarge"
sizing="medium"
background="none"
cardStyle="glass-elevated"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
</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">
<HeroSplitTestimonial
background={{ variant: "glowing-orb" }}
title="Build Better Digital Experiences"
description="Create exceptional user experiences with our innovative design and marketing solutions. We help modern brands stand out in the digital landscape."
tag="Digital Innovation"
imagePosition="right"
imageSrc="https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&h=600&fit=crop"
imageAlt="Digital design workspace"
testimonials={[
{
name: "Sarah Johnson", handle: "CEO, TechCorp", testimonial: "This transformed our digital presence completely. Amazing results!", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=100&h=100&fit=crop"
},
{
name: "Michael Chen", handle: "Founder, StartupX", testimonial: "The best design studio we've worked with. Highly recommended!", rating: 5,
imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop"
},
]}
<HeroLogoBillboard
logoText="vortex"
description="We help driven founders build the brands of tomorrow through websites, product design & branding."
buttons={[
{ text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#about" },
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="https://images.unsplash.com/photo-1633356122544-f134ef2944f5?w=1200&h=600&fit=crop"
imageAlt="Hero showcase"
frameStyle="card"
mediaAnimation="slide-up"
buttonAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="About Vortex Web"
description="We're a team of designers, developers, and marketers passionate about creating digital solutions that matter. Our approach combines creativity with strategy to deliver results."
tag="About Us"
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=1"
imageAlt="Our team collaborating"
buttons={[{ text: "Explore Our Work", href: "#features" }]}
<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="features" data-section="features">
<FeatureCardTwentySix
<div id="services" data-section="services">
<FeatureCardTwentyFive
features={[
{
title: "Strategic Design", description: "We create designs that align with your business goals and user needs.", imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop&_wi=1", imageAlt: "Strategic design process", buttonIcon: ArrowRight,
buttonHref: "/"
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"},
],
},
{
title: "Digital Marketing", description: "Reach your audience with targeted, data-driven marketing campaigns.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=2", imageAlt: "Marketing strategy session", buttonIcon: ArrowRight,
buttonHref: "/"
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"},
],
},
{
title: "Web Development", description: "Fast, secure, and scalable websites built with modern technology.", imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=800&h=600&fit=crop", imageAlt: "Web development", buttonIcon: ArrowRight,
buttonHref: "/"
},
{
title: "Brand Strategy", description: "Build a strong brand identity that resonates with your target market.", imageSrc: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=600&fit=crop&_wi=2", imageAlt: "Brand strategy workshop", buttonIcon: ArrowRight,
buttonHref: "/"
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"},
],
},
]}
animationType="slide-up"
title="Our Services"
description="Comprehensive solutions for your digital needs"
tag="What We Offer"
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">
<PricingCardOne
<PricingCardThree
plans={[
{
id: "1", badge: "Starter", price: "$999", subtitle: "Perfect for small projects", features: [
"Up to 5 pages", "Responsive design", "Basic SEO optimization", "2 months support"
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: "Professional", badgeIcon: Package,
price: "$2,499", subtitle: "Most popular choice", features: [
"Up to 15 pages", "Advanced SEO", "E-commerce integration", "6 months support", "Analytics setup"
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", badge: "Enterprise", price: "Custom", subtitle: "For large scale projects", features: [
"Unlimited pages", "Custom development", "Full marketing suite", "12 months support", "Dedicated account manager"
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="Simple, Transparent Pricing"
description="Choose the perfect plan for your needs"
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">
<TestimonialCardTwo
<TestimonialCardTen
testimonials={[
{
id: "1", name: "Alex Rivera", role: "Marketing Director", testimonial: "Working with Vortex Web was a game-changer for our company. Their attention to detail and creative approach delivered exceptional results.", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&h=200&fit=crop", imageAlt: "Alex Rivera"
},
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: "Emma Thompson", role: "CEO, Tech Innovations", testimonial: "The team understood our vision perfectly and executed it flawlessly. Highly professional and results-oriented.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&h=200&fit=crop", imageAlt: "Emma Thompson"
},
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: "James Wilson", role: "Founder, Digital Co.", testimonial: "Outstanding work from start to finish. Our website traffic increased by 300% within the first month. Couldn't be happier!", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=200&h=200&fit=crop", imageAlt: "James Wilson"
},
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"},
]}
title="What Our Clients Say"
description="Real testimonials from companies we've partnered with"
description="Real testimonials from our satisfied clients"
tag="Testimonials"
tagIcon={MessageSquare}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
tag="Get in Touch"
tagIcon={Mail}
title="Ready to Transform Your Digital Presence?"
description="Let's work together to create something amazing. Our team is ready to help you bring your vision to life."
buttons={[
{ text: "Contact Us", href: "/contact" },
{ text: "Schedule a Call", href: "/contact" },
<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."},
]}
background={{ variant: "radial-gradient" }}
sideTitle="Frequently Asked Questions"
sideDescription="Find answers to common questions about our services"
textPosition="left"
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="slide-up"
/>
</div>
<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" },
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920&h=600&fit=crop&_wi=1"
imageAlt="Footer background"
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "About", href: "#about" },
],
},
{
title: "Company", items: [
{ label: "Blog", href: "/" },
{ label: "Careers", href: "/" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy", href: "/" },
{ label: "Terms", href: "/" },
{ label: "Security", href: "/" },
],
},
]}
logoText="Vortex Web"
copyrightText="© 2025 Vortex Web. All rights reserved."
/>
</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>
);
}