12 Commits

Author SHA1 Message Date
10f77bd40b Update src/app/page.tsx 2026-03-09 21:45:49 +00:00
28151b716a Update src/app/contact/page.tsx 2026-03-09 21:45:48 +00:00
f4c0fa00a5 Update src/app/page.tsx 2026-03-09 21:45:03 +00:00
5e677c832c Update src/app/layout.tsx 2026-03-09 21:45:03 +00:00
e2bfb36eb3 Update src/app/contact/page.tsx 2026-03-09 21:45:02 +00:00
bfc5fa822e Update src/app/page.tsx 2026-03-09 21:43:29 +00:00
989487b18a Update src/app/contact/page.tsx 2026-03-09 21:43:28 +00:00
4d811a451b Merge version_5 into main
Merge version_5 into main
2026-03-09 21:42:40 +00:00
907755c685 Update src/app/page.tsx 2026-03-09 21:42:35 +00:00
0d91e2b274 Add src/app/contact/page.tsx 2026-03-09 21:42:35 +00:00
71812d125a Merge version_4 into main
Merge version_4 into main
2026-03-09 21:30:45 +00:00
86ffcba6fb Merge version_4 into main
Merge version_4 into main
2026-03-09 21:29:52 +00:00
3 changed files with 389 additions and 163 deletions

254
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,254 @@
"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";
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"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
</div>
<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 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">
<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>
);
}

View File

@@ -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: `

View File

@@ -1,216 +1,205 @@
"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 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";
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"
};
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" },
];
function getAssetUrl(assetId: string): string {
return assetMap[assetId] || "/placeholders/placeholder1.webp";
}
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="grid"
cardStyle="subtle-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
sizing="medium"
background="none"
cardStyle="glass-elevated"
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"
/>
<NavbarStyleApple navItems={navItems} brandName="Vortex" />
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText=" Vortex Web"
description="Innovative solutions, effortless experience."
background={{ variant: "gradient-bars" }}
buttons={[
{ text: "Work With Me", href: "#contact" }
<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"
},
]}
layoutOrder="default"
imageSrc={getAssetUrl("hero-gradient")}
imageAlt="Gradient background charcoal to slate"
mediaAnimation="opacity"
frameStyle="card"
buttonAnimation="opacity"
ariaLabel="Hero section for Joshua Chavez Co design and marketing services"
buttons={[
{ text: "Get Started", href: "/contact" },
{ text: "Learn More", href: "#about" },
]}
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."
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={getAssetUrl("about-image")}
imageAlt="Modern design studio workspace"
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: "Discover Our Approach", href: "/services" }
]}
tagAnimation="slide-up"
/>
</div>
<div id="services" data-section="services">
<FeatureCardTen
<div id="features" data-section="features">
<FeatureCardTwentySix
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" }
],
reverse: false
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: "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" }
],
reverse: true
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: "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" }
],
reverse: false
}
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="Our Services"
description="We deliver comprehensive design and marketing solutions tailored to your brand's unique vision and business goals."
tag="Services"
description="Comprehensive solutions for your digital needs"
tag="What We Offer"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
tagAnimation="slide-up"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
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: "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: "3", badge: "Enterprise", price: "Custom", subtitle: "For large scale projects", features: [
"Unlimited pages", "Custom development", "Full marketing suite", "12 months support", "Dedicated account manager"
],
},
]}
title="Simple, Transparent Pricing"
description="Choose the perfect plan for your needs"
tag="Pricing"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
<TestimonialCardTwo
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", 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: "Marcus Chen", role: "CEO", company: "Innovation Labs", rating: 5,
imageSrc: getAssetUrl("testimonial-2"),
imageAlt: "Marcus Chen, CEO of Innovation Labs"
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: "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: "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 Thompson", role: "Creative Director", company: "Brand Alliance", rating: 5,
imageSrc: getAssetUrl("testimonial-4"),
imageAlt: "James Thompson, Creative Director at Brand Alliance"
}
]}
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 companies we've partnered with"
tag="Testimonials"
textboxLayout="default"
useInvertedBackground={false}
tagAnimation="slide-up"
animationType="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="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" },
]}
textarea={{ name: "message", placeholder: "Tell us about your project", rows: 5, required: true }}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc={getAssetUrl("contact-image")}
imageAlt="Modern creative workspace"
mediaAnimation="opacity"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Joshua Chavez Co"
<FooterMedia
imageSrc="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920&h=600&fit=crop&_wi=1"
imageAlt="Footer background"
columns={[
{
title: "Services", items: [
{ label: "Web Design", href: "/services" },
{ label: "Branding", href: "/services" },
{ label: "Marketing", href: "/services" }
]
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "About", href: "#about" },
],
},
{
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" }
]
{ label: "Blog", href: "/" },
{ label: "Careers", href: "/" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
}
{ label: "Privacy", href: "/" },
{ label: "Terms", href: "/" },
{ label: "Security", href: "/" },
],
},
]}
copyrightText="© 2025 Vortex Web . All rights reserved."
logoText="Vortex Web"
copyrightText="© 2025 Vortex Web. All rights reserved."
/>
</div>
</ThemeProvider>