Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85940e40e6 | |||
| 8277a71930 | |||
| 33cccae0b0 | |||
| 25686faacc | |||
| f738150a5e | |||
| c29a8f3715 | |||
| e3e417d097 | |||
| ee5bb2e6d4 | |||
| 5f92b80815 |
@@ -1,25 +1,18 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/components/theme/ThemeProvider";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { useState } from "react";
|
||||
import ContactForm from "@/components/form/ContactForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Mail, MessageSquare } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const [formData, setFormData] = useState<Record<string, string>>({});
|
||||
|
||||
const handleSubmit = (data: Record<string, string>) => {
|
||||
setFormData(data);
|
||||
console.log("Form submitted:", data);
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
@@ -32,45 +25,83 @@ export default function ContactPage() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
bottomRightText="hello@vortex.com"
|
||||
/>
|
||||
|
||||
<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={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your name", required: true
|
||||
},
|
||||
{
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Send Message"
|
||||
onSubmit={handleSubmit}
|
||||
/>
|
||||
<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>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Vortex"
|
||||
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/terms" }}
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
|
||||
247
src/app/page.tsx
247
src/app/page.tsx
@@ -1,15 +1,16 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/components/theme/ThemeProvider";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
|
||||
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 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 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() {
|
||||
return (
|
||||
@@ -17,7 +18,7 @@ export default function Home() {
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
@@ -30,8 +31,8 @@ export default function Home() {
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vortex"
|
||||
bottomLeftText="Global Community"
|
||||
@@ -39,64 +40,94 @@ export default function Home() {
|
||||
/>
|
||||
|
||||
<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"
|
||||
imagePosition="right"
|
||||
imageSrc="/placeholders/placeholder-16-9.svg"
|
||||
imageAlt="Product showcase"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah Johnson", handle: "CEO, TechCorp", testimonial: "This transformed our workflow!", rating: 5,
|
||||
imageSrc: "/placeholders/avatar-1.svg"
|
||||
}
|
||||
]}
|
||||
<HeroLogoBillboard
|
||||
logoText="vortex"
|
||||
description="We help driven founders build the brands of tomorrow through websites, product design & branding."
|
||||
buttons={[
|
||||
{ text: "Start Building", href: "https://example.com" },
|
||||
{ text: "View Demo", href: "#services" }
|
||||
{ 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">
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{ type: "text", content: "Building the future with" },
|
||||
{ type: "image", src: "/placeholders/logo.svg", alt: "Company logo" },
|
||||
{ type: "text", content: "innovative solutions" }
|
||||
]}
|
||||
<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}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "#services" }
|
||||
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">
|
||||
<FeatureCardTwentySeven
|
||||
<FeatureCardTwentyFive
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Web Development", description: "Custom websites built with modern technologies.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Web Development"
|
||||
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"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", title: "UI/UX Design", description: "Beautiful and intuitive user interfaces.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "UI/UX Design"
|
||||
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"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", title: "Brand Strategy", description: "Strategic branding for lasting impact.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Brand Strategy"
|
||||
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"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4", title: "Marketing", description: "Data-driven marketing campaigns.", imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Marketing"
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
title="Our Services"
|
||||
description="Discover what makes us different"
|
||||
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>
|
||||
|
||||
@@ -104,90 +135,124 @@ export default function Home() {
|
||||
<PricingCardThree
|
||||
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", price: "$2,999", name: "Starter", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: ["Up to 10 users", "20GB storage", "Email support"]
|
||||
features: ["Brand Strategy", "Logo Design", "1 Round of Revisions", "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: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "$5,999", name: "Professional", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: ["Up to 20 users", "40GB storage", "Priority support"]
|
||||
features: [
|
||||
"Complete Brand Identity", "Website Design", "3 Rounds of Revisions", "Priority Support", "Social Media Kit"],
|
||||
},
|
||||
{
|
||||
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", price: "$9,999", name: "Enterprise", buttons: [
|
||||
{ text: "Get Started", href: "/contact" },
|
||||
{ text: "Learn More", href: "/contact" },
|
||||
],
|
||||
features: ["Unlimited users", "Unlimited storage", "24/7 support"]
|
||||
}
|
||||
features: [
|
||||
"Full Brand Overhaul", "Custom Website Development", "Unlimited Revisions", "24/7 Dedicated Support", "Marketing Campaign", "Analytics & Reporting"],
|
||||
},
|
||||
]}
|
||||
title="Choose Your Plan"
|
||||
description="Find 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"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
<TestimonialCardTen
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", imageSrc: "/placeholders/avatar-1.svg"
|
||||
},
|
||||
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: "Michael Chen", imageSrc: "/placeholders/avatar-2.svg"
|
||||
},
|
||||
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: "Emma Davis", imageSrc: "/placeholders/avatar-3.svg"
|
||||
},
|
||||
{
|
||||
id: "4", name: "James Wilson", imageSrc: "/placeholders/avatar-4.svg"
|
||||
}
|
||||
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"},
|
||||
]}
|
||||
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 our satisfied clients"
|
||||
tag="Testimonials"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What is your return policy?", content: "We offer a 30-day money-back guarantee on all our products."
|
||||
},
|
||||
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: "How long does shipping take?", content: "Standard shipping typically takes 5-7 business days."
|
||||
},
|
||||
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: "Do you ship internationally?", content: "Yes, we ship to over 100 countries worldwide."
|
||||
},
|
||||
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: "What is your warranty?", content: "All products come with a 1-year warranty covering manufacturing defects."
|
||||
}
|
||||
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."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions"
|
||||
textboxLayout="default"
|
||||
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="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Vortex"
|
||||
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
|
||||
rightLink={{ text: "Terms of Service", href: "/terms" }}
|
||||
<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>
|
||||
|
||||
<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