Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10f77bd40b | |||
| 28151b716a | |||
| f4c0fa00a5 | |||
| 5e677c832c | |||
| e2bfb36eb3 | |||
| bfc5fa822e | |||
| 989487b18a | |||
| 4d811a451b |
@@ -1,74 +1,252 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/components/theme/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
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";
|
||||
|
||||
export default function ContactPage() {
|
||||
const [formData, setFormData] = useState<Record<string, string>>({});
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const handleSubmit = (data: Record<string, string>) => {
|
||||
setFormData(data);
|
||||
console.log("Form submitted:", data);
|
||||
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="hover-magnetic"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get in touch"
|
||||
description="We'd love to hear from you. Send us a message and we'll respond as soon as possible."
|
||||
inputs={[
|
||||
<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: "name", type: "text", placeholder: "Your name", required: true
|
||||
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,
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your email", required: true
|
||||
}
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Type your message...", rows: 5,
|
||||
required: true
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="/placeholders/placeholder-16-9.svg"
|
||||
buttons={[
|
||||
{ text: "Send Message", href: "#contact-form" },
|
||||
{ text: "Back Home", href: "/" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Send Message"
|
||||
onSubmit={handleSubmit}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<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>
|
||||
</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>
|
||||
</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">
|
||||
<FooterLogoReveal
|
||||
logoText="Vortex"
|
||||
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/terms" }}
|
||||
<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>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -1,12 +1,8 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
import "./styles/globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Vortex Web - Design & Marketing Studio", description: "Innovative design and marketing solutions for modern brands"
|
||||
};
|
||||
title: "Vortex Web - Digital Solutions", description: "Create exceptional digital experiences with our innovative design and marketing solutions."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,21 +10,8 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<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')
|
||||
}
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
222
src/app/page.tsx
222
src/app/page.tsx
@@ -1,191 +1,205 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/components/theme/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
|
||||
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
|
||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Sparkles } from "lucide-react";
|
||||
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";
|
||||
|
||||
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="hover-magnetic"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Build Better Products"
|
||||
description="Create exceptional user experiences with our design system"
|
||||
tag="New Release"
|
||||
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="/placeholders/placeholder-16-9.svg"
|
||||
imageAlt="Product showcase"
|
||||
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 workflow!", rating: 5,
|
||||
imageSrc: "/placeholders/avatar-1.svg"
|
||||
}
|
||||
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"
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Building", href: "https://example.com" },
|
||||
{ text: "View Demo", href: "#services" }
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Building the future with" },
|
||||
{ type: "image", src: "/placeholders/logo.svg", alt: "Company logo" },
|
||||
{ type: "text", content: "innovative solutions" }
|
||||
]}
|
||||
<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" }]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentySeven
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentySix
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Web Development", description: "Custom websites built with modern technologies.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Web Development"
|
||||
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: "/"
|
||||
},
|
||||
{
|
||||
id: "2", title: "UI/UX Design", description: "Beautiful and intuitive user interfaces.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "UI/UX Design"
|
||||
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: "/"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Brand Strategy", description: "Strategic branding for lasting impact.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Brand Strategy"
|
||||
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: "/"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Marketing", description: "Data-driven marketing campaigns.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Marketing"
|
||||
}
|
||||
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: "/"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="Discover what makes us different"
|
||||
description="Comprehensive solutions for your digital needs"
|
||||
tag="What We Offer"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardThree
|
||||
<PricingCardOne
|
||||
plans={[
|
||||
{
|
||||
id: "1", price: "$10/mo", name: "Basic plan", buttons: [
|
||||
{ text: "Get started", onClick: () => console.log("clicked") },
|
||||
{ text: "Chat to sales", onClick: () => console.log("chat") }
|
||||
id: "1", badge: "Starter", price: "$999", subtitle: "Perfect for small projects", features: [
|
||||
"Up to 5 pages", "Responsive design", "Basic SEO optimization", "2 months support"
|
||||
],
|
||||
features: ["Up to 10 users", "20GB storage", "Email support"]
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Most popular plan", badgeIcon: Sparkles,
|
||||
price: "$20/mo", name: "Business plan", buttons: [
|
||||
{ text: "Get started", onClick: () => console.log("clicked") },
|
||||
{ text: "Chat to sales", onClick: () => console.log("chat") }
|
||||
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"
|
||||
],
|
||||
features: ["Up to 20 users", "40GB storage", "Priority support"]
|
||||
},
|
||||
{
|
||||
id: "3", price: "$30/mo", name: "Enterprise plan", buttons: [
|
||||
{ text: "Get started", onClick: () => console.log("clicked") },
|
||||
{ text: "Chat to sales", onClick: () => console.log("chat") }
|
||||
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"
|
||||
],
|
||||
features: ["Unlimited users", "Unlimited storage", "24/7 support"]
|
||||
}
|
||||
},
|
||||
]}
|
||||
title="Choose Your Plan"
|
||||
description="Find the perfect plan for your needs"
|
||||
title="Simple, Transparent Pricing"
|
||||
description="Choose the perfect plan for your needs"
|
||||
tag="Pricing"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
<TestimonialCardTwo
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "/placeholders/avatar-1.svg"
|
||||
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: "2", name: "Michael Chen", imageSrc: "/placeholders/avatar-2.svg"
|
||||
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: "3", name: "Emma Davis", imageSrc: "/placeholders/avatar-3.svg"
|
||||
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: "4", name: "James Wilson", imageSrc: "/placeholders/avatar-4.svg"
|
||||
}
|
||||
]}
|
||||
cardTitle="Over 10,000 customers trust us to deliver exceptional results"
|
||||
cardTag="See what they say"
|
||||
cardAnimation="slide-up"
|
||||
title="What Our Clients Say"
|
||||
description="Real testimonials from companies we've partnered with"
|
||||
tag="Testimonials"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all our products."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you ship internationally?", content: "Yes, we ship to over 100 countries worldwide."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What is your warranty?", content: "All products come with a 1-year warranty covering manufacturing defects."
|
||||
}
|
||||
<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" },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions"
|
||||
textboxLayout="default"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Vortex"
|
||||
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/terms" }}
|
||||
<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>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user