Compare commits
27 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 36a1777a54 | |||
| bc56e8a931 | |||
| f24f322a7f | |||
| 618b17ce68 | |||
| 429f11450a | |||
| 5d856465e6 | |||
| 3fd08d82aa | |||
| bfe8e21339 | |||
| 1a292eb13b | |||
| ece8d0143d | |||
| 377c0e9335 | |||
| 1d54fcc1da | |||
| bb8f610dbc | |||
| d9a537a929 | |||
| b40af55fd4 | |||
| 2e15388122 | |||
| fde2a6d977 | |||
| 5951a803b2 | |||
| 2c98cdc418 | |||
| 5bb9d0b126 | |||
| f9c25452b2 | |||
| d049b83f6a | |||
| acf06203c7 | |||
| dad0cc756f | |||
| fa806257ff | |||
| d5e88202cc | |||
| 48039255c6 |
@@ -1,71 +1,61 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import { Users } from "lucide-react";
|
||||
import { Brain, Heart, Users, MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
tag="Our Mission"
|
||||
tagIcon={Users}
|
||||
title="Building a Calmer Future for Neurodivergent Minds"
|
||||
useInvertedBackground={false}
|
||||
className="py-24"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Contact Us"
|
||||
title="Have questions or want to partner with us?"
|
||||
description="Reach out to our team—we'd love to hear your story."
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||
logoText="NeuroFlow"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20" id="metrics" data-section="metrics">
|
||||
<AboutMetric
|
||||
title="Our Vision for Calm Productivity"
|
||||
metrics={[
|
||||
{ icon: Brain, label: "Focus Science", value: "Evidence-Based" },
|
||||
{ icon: Heart, label: "Empathy First", value: "Neuro-Inclusive" },
|
||||
{ icon: Users, label: "Community", value: "10k+ Members" },
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="NeuroFlow"
|
||||
imageSrc="https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?_wi=1"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Therapy AI", href: "/therapy-ai" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
46
src/app/focus-mode/page.tsx
Normal file
46
src/app/focus-mode/page.tsx
Normal file
@@ -0,0 +1,46 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import { MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function FocusModePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||
{ name: "Study AI", id: "/study-ai" },
|
||||
{ name: "Planner", id: "/planner" },
|
||||
{ name: "Focus Mode", id: "/focus-mode" }
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen flex items-center justify-center p-8">
|
||||
<div className="backdrop-blur-xl bg-white/10 border border-white/20 p-12 rounded-3xl shadow-2xl text-center max-w-2xl">
|
||||
<p>Focus Mode</p>
|
||||
</div>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
372
src/app/page.tsx
372
src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Activity, Calendar, CheckCircle, Clock, Lightbulb, Music, ShieldCheck, TrendingUp, Users, Zap } from "lucide-react";
|
||||
import { Activity, Calendar, CheckCircle, Clock, Lightbulb, Music, ShieldCheck, TrendingUp, Users, Zap, MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,232 +29,150 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Features", id: "#features"},
|
||||
{
|
||||
name: "Pricing", id: "#pricing"},
|
||||
{
|
||||
name: "Support", id: "#faq"},
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Start Focusing Smarter"
|
||||
description="NeuroFlow is your calm, AI-powered companion designed to help you study, organize, and thrive—free from the overwhelm."
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Free Trial", href: "#"},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "slide1", imageSrc: "http://img.b2bpic.net/free-photo/high-blurred-spots-black-screen_23-2148241362.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
{
|
||||
id: "slide2", imageSrc: "http://img.b2bpic.net/free-photo/three-smart-blank-screens-wall_53876-160689.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
{
|
||||
id: "slide3", imageSrc: "http://img.b2bpic.net/free-photo/shiny-blue-computer-graphic-backdrop-with-defocused-motion-generated-by-ai_188544-9599.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
{
|
||||
id: "slide4", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-geometric-shapes_23-2150979717.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
{
|
||||
id: "slide5", imageSrc: "http://img.b2bpic.net/free-photo/3d-shape-glowing-with-bright-holographic-colors_23-2151037277.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
{
|
||||
id: "slide6", imageSrc: "http://img.b2bpic.net/free-vector/gradient-glassmorphism-mobile-app-template_23-2149440842.jpg", imageAlt: "futuristic dashboard interface"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1", icon: CheckCircle,
|
||||
title: "Tasks Completed", value: "2.4k+"},
|
||||
{
|
||||
id: "2", icon: Clock,
|
||||
title: "Focus Hours", value: "1.2k"},
|
||||
{
|
||||
id: "3", icon: Zap,
|
||||
title: "XP Points Earned", value: "58k"},
|
||||
{
|
||||
id: "4", icon: TrendingUp,
|
||||
title: "Streaks Built", value: "45"},
|
||||
{
|
||||
id: "5", icon: Users,
|
||||
title: "Community Members", value: "10k+"},
|
||||
]}
|
||||
title="Your Progress"
|
||||
description="Visualize your journey towards deep focus and sustained productivity."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureHoverPattern
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Lightbulb,
|
||||
title: "AI ADHD Assistant", description: "Gentle, supportive AI guidance for task breakdowns and routines."},
|
||||
{
|
||||
icon: Activity,
|
||||
title: "Gamified Flow", description: "Earn XP, unlock themes, and build streaks through focused work."},
|
||||
{
|
||||
icon: Music,
|
||||
title: "Ambient Soundscape", description: "Curated ambient textures to help you enter and stay in deep focus."},
|
||||
{
|
||||
icon: Calendar,
|
||||
title: "Intuitive Planning", description: "Drag-and-drop scheduling that adapts to your energy levels."},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
title: "Privacy First", description: "Your focus habits and tasks remain yours and yours alone."},
|
||||
]}
|
||||
title="Designed for Clarity"
|
||||
description="Every feature is crafted to reduce friction and minimize cognitive load."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardTwo
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "basic", badge: "Essential", price: "$0", subtitle: "Get started for free", buttons: [
|
||||
{
|
||||
text: "Sign Up", href: "#"},
|
||||
],
|
||||
features: [
|
||||
"Basic task manager", "Focus timer", "Community access"],
|
||||
},
|
||||
{
|
||||
id: "premium", badge: "Pro", price: "$12", subtitle: "For advanced support", buttons: [
|
||||
{
|
||||
text: "Upgrade", href: "#"},
|
||||
],
|
||||
features: [
|
||||
"AI Assistant", "Ambient music library", "Advanced analytics", "Custom themes", "Priority support"],
|
||||
},
|
||||
]}
|
||||
title="Simple Pricing"
|
||||
description="Choose the perfect plan to support your productivity journey."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah J.", handle: "@sarah_focus", testimonial: "Finally, a tool that doesn't feel overwhelming. It feels like a hug for my brain.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-beautiful-middle-aged-business-woman_1262-3072.jpg"},
|
||||
{
|
||||
id: "2", name: "Mark L.", handle: "@mark_study", testimonial: "The AI assistant changed how I break down projects. No more executive dysfunction anxiety.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-eastern-manager-examines-infographics-oversee-business-operations_482257-128607.jpg"},
|
||||
{
|
||||
id: "3", name: "Emily C.", handle: "@emily_creative", testimonial: "The music and interface are so calming. It makes studying actually feel good.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waist-up-shot-young-girl-sitting-her-desk-with-pile-textbooks-writing_1098-20796.jpg"},
|
||||
{
|
||||
id: "4", name: "David W.", handle: "@david_pro", testimonial: "I love the gamification. It's the only way I stay consistent with my daily habits.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-laptop-posing-coworker_23-2148746260.jpg"},
|
||||
{
|
||||
id: "5", name: "Anna P.", handle: "@anna_design", testimonial: "NeuroFlow is gorgeous. It reduces my stress just by opening the dashboard.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-man-looking-camera_23-2148130353.jpg"},
|
||||
]}
|
||||
showRating={true}
|
||||
title="Loved by Neurodivergent Humans"
|
||||
description="Our community is growing. See what others are saying."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1", title: "Is it right for me?", content: "Yes! NeuroFlow is specifically built for neurodivergent minds."},
|
||||
{
|
||||
id: "q2", title: "Is it free?", content: "We offer a generous free tier for daily needs."},
|
||||
{
|
||||
id: "q3", title: "What about my data?", content: "Your data is private and never shared."},
|
||||
{
|
||||
id: "q4", title: "Can I cancel anytime?", content: "Absolutely. Our subscription can be managed or canceled in your settings at any time."},
|
||||
{
|
||||
id: "q5", title: "Does it support desktop?", content: "Yes, NeuroFlow is accessible via browser on all major desktop and mobile platforms."},
|
||||
]}
|
||||
sideTitle="Questions?"
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Latest Insights"
|
||||
description="Tips for managing ADHD and finding flow."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1", category: "Focus", title: "Why Pomodoro helps ADHD", excerpt: "Deep dive into focus rhythms.", imageSrc: "http://img.b2bpic.net/free-vector/chatbot-ai-multiple-styles-set_78370-9694.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/man-sitting-living-room-home-guy-enjoying-studying-using-laptop-headset_1157-48722.jpg", date: "Jan 2025"},
|
||||
{
|
||||
id: "b2", category: "Routine", title: "Morning Habits Simplified", excerpt: "How to start your day calmly.", imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-cup-alarm-clock-diary-pencil-white-background-with-copy-space-text_23-2148061615.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/content-creator-filming-packaged-product-unboxing_482257-124404.jpg", date: "Jan 2025"},
|
||||
{
|
||||
id: "b3", category: "Science", title: "The Dopamine Effect", excerpt: "How rewards build consistency.", imageSrc: "http://img.b2bpic.net/free-photo/azure-specks-light_23-2147786100.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/teenage-boy-bedroom-doing-work-stressed-out-frustrated_53876-144262.jpg", date: "Jan 2025"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "rotated-rays-static"}}
|
||||
tag="Get Started"
|
||||
title="Ready to find your flow?"
|
||||
description="Join thousands who are reclaiming their focus. Sign up today."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||
logoText="NeuroFlow"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About", href: "#"},
|
||||
{
|
||||
label: "Careers", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy", href: "#"},
|
||||
{
|
||||
label: "Terms", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
||||
/>
|
||||
</div>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||
{ name: "Study AI", id: "/study-ai" },
|
||||
{ name: "Planner", id: "/planner" },
|
||||
{ name: "Focus Mode", id: "/focus-mode" }
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
title="Start Focusing Smarter"
|
||||
description="NeuroFlow is your calm, AI-powered companion designed to help you study, organize, and thrive—free from the overwhelm."
|
||||
buttons={[{ text: "Start Free Trial", href: "#" }]}
|
||||
carouselItems={[
|
||||
{ id: "slide1", imageSrc: "http://img.b2bpic.net/free-photo/high-blurred-spots-black-screen_23-2148241362.jpg", imageAlt: "futuristic dashboard interface" },
|
||||
{ id: "slide2", imageSrc: "http://img.b2bpic.net/free-photo/three-smart-blank-screens-wall_53876-160689.jpg", imageAlt: "futuristic dashboard interface" },
|
||||
{ id: "slide3", imageSrc: "http://img.b2bpic.net/free-photo/shiny-blue-computer-graphic-backdrop-with-defocused-motion-generated-by-ai_188544-9599.jpg", imageAlt: "futuristic dashboard interface" },
|
||||
{ id: "slide4", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-geometric-shapes_23-2150979717.jpg", imageAlt: "futuristic dashboard interface" },
|
||||
{ id: "slide5", imageSrc: "http://img.b2bpic.net/free-photo/3d-shape-glowing-with-bright-holographic-colors_23-2151037277.jpg", imageAlt: "futuristic dashboard interface" },
|
||||
{ id: "slide6", imageSrc: "http://img.b2bpic.net/free-vector/gradient-glassmorphism-mobile-app-template_23-2149440842.jpg", imageAlt: "futuristic dashboard interface" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "1", icon: CheckCircle, title: "Tasks Completed", value: "2.4k+" },
|
||||
{ id: "2", icon: Clock, title: "Focus Hours", value: "1.2k" },
|
||||
{ id: "3", icon: Zap, title: "XP Points Earned", value: "58k" },
|
||||
{ id: "4", icon: TrendingUp, title: "Streaks Built", value: "45" },
|
||||
{ id: "5", icon: Users, title: "Community Members", value: "10k+" },
|
||||
]}
|
||||
title="Your Progress"
|
||||
description="Visualize your journey towards deep focus and sustained productivity."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureHoverPattern
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ icon: Lightbulb, title: "AI ADHD Assistant", description: "Gentle, supportive AI guidance for task breakdowns and routines." },
|
||||
{ icon: Activity, title: "Gamified Flow", description: "Earn XP, unlock themes, and build streaks through focused work." },
|
||||
{ icon: Music, title: "Ambient Soundscape", description: "Curated ambient textures to help you enter and stay in deep focus." },
|
||||
{ icon: Calendar, title: "Intuitive Planning", description: "Drag-and-drop scheduling that adapts to your energy levels." },
|
||||
{ icon: ShieldCheck, title: "Privacy First", description: "Your focus habits and tasks remain yours and yours alone." },
|
||||
]}
|
||||
title="Designed for Clarity"
|
||||
description="Every feature is crafted to reduce friction and minimize cognitive load."
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardTwo
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "basic", badge: "Essential", price: "$0", subtitle: "Get started for free", buttons: [{ text: "Sign Up", href: "#" }], features: ["Basic task manager", "Focus timer", "Community access"] },
|
||||
{ id: "premium", badge: "Pro", price: "$12", subtitle: "For advanced support", buttons: [{ text: "Upgrade", href: "#" }], features: ["AI Assistant", "Ambient music library", "Advanced analytics", "Custom themes", "Priority support"] },
|
||||
]}
|
||||
title="Simple Pricing"
|
||||
description="Choose the perfect plan to support your productivity journey."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="depth-3d"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarah_focus", testimonial: "Finally, a tool that doesn't feel overwhelming. It feels like a hug for my brain.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/serious-beautiful-middle-aged-business-woman_1262-3072.jpg" },
|
||||
{ id: "2", name: "Mark L.", handle: "@mark_study", testimonial: "The AI assistant changed how I break down projects. No more executive dysfunction anxiety.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/middle-eastern-manager-examines-infographics-oversee-business-operations_482257-128607.jpg" },
|
||||
{ id: "3", name: "Emily C.", handle: "@emily_creative", testimonial: "The music and interface are so calming. It makes studying actually feel good.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/waist-up-shot-young-girl-sitting-her-desk-with-pile-textbooks-writing_1098-20796.jpg" },
|
||||
{ id: "4", name: "David W.", handle: "@david_pro", testimonial: "I love the gamification. It's the only way I stay consistent with my daily habits.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-with-laptop-posing-coworker_23-2148746260.jpg" },
|
||||
{ id: "5", name: "Anna P.", handle: "@anna_design", testimonial: "NeuroFlow is gorgeous. It reduces my stress just by opening the dashboard.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-man-looking-camera_23-2148130353.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Loved by Neurodivergent Humans"
|
||||
description="Our community is growing. See what others are saying."
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "q1", title: "Is it right for me?", content: "Yes! NeuroFlow is specifically built for neurodivergent minds." },
|
||||
{ id: "q2", title: "Is it free?", content: "We offer a generous free tier for daily needs." },
|
||||
{ id: "q3", title: "What about my data?", content: "Your data is private and never shared." },
|
||||
{ id: "q4", title: "Can I cancel anytime?", content: "Absolutely. Our subscription can be managed or canceled in your settings at any time." },
|
||||
{ id: "q5", title: "Does it support desktop?", content: "Yes, NeuroFlow is accessible via browser on all major desktop and mobile platforms." },
|
||||
]}
|
||||
sideTitle="Questions?"
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardThree
|
||||
animationType="scale-rotate"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Latest Insights"
|
||||
description="Tips for managing ADHD and finding flow."
|
||||
blogs={[
|
||||
{ id: "b1", category: "Focus", title: "Why Pomodoro helps ADHD", excerpt: "Deep dive into focus rhythms.", imageSrc: "http://img.b2bpic.net/free-vector/chatbot-ai-multiple-styles-set_78370-9694.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/man-sitting-living-room-home-guy-enjoying-studying-using-laptop-headset_1157-48722.jpg", date: "Jan 2025" },
|
||||
{ id: "b2", category: "Routine", title: "Morning Habits Simplified", excerpt: "How to start your day calmly.", imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-cup-alarm-clock-diary-pencil-white-background-with-copy-space-text_23-2148061615.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/content-creator-filming-packaged-product-unboxing_482257-124404.jpg", date: "Jan 2025" },
|
||||
{ id: "b3", category: "Science", title: "The Dopamine Effect", excerpt: "How rewards build consistency.", imageSrc: "http://img.b2bpic.net/free-photo/azure-specks-light_23-2147786100.jpg", authorName: "Team NeuroFlow", authorAvatar: "http://img.b2bpic.net/free-photo/teenage-boy-bedroom-doing-work-stressed-out-frustrated_53876-144262.jpg", date: "Jan 2025" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "rotated-rays-static" }}
|
||||
tag="Get Started"
|
||||
title="Ready to find your flow?"
|
||||
description="Join thousands who are reclaiming their focus. Sign up today."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||
logoText="NeuroFlow"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,63 +1,49 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function PlannerPage() {
|
||||
const [tasks, setTasks] = useState([
|
||||
{ id: "1", title: "Review Project Brief" },
|
||||
{ id: "2", title: "Design System Updates" },
|
||||
{ id: "3", title: "Focus Time - Research" },
|
||||
]);
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div className="min-h-screen bg-[var(--background)] p-8">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
brandName="NeuroFlow Planner"
|
||||
navItems={[{ name: "Back to Home", id: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<main className="mt-24 max-w-4xl mx-auto space-y-6">
|
||||
<h1 className="text-4xl font-bold text-[var(--foreground)]">Daily Planner</h1>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||||
<div className="p-8 rounded-3xl bg-white/10 backdrop-blur-xl border border-white/20">
|
||||
<h2 className="text-xl font-semibold mb-4">To Do</h2>
|
||||
<div className="space-y-4">
|
||||
{tasks.map((task) => (
|
||||
<div
|
||||
key={task.id}
|
||||
draggable
|
||||
className="p-4 rounded-xl bg-white/5 border border-white/10 cursor-move hover:bg-white/10 transition-colors"
|
||||
>
|
||||
{task.title}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<div className="p-8 rounded-3xl bg-white/10 backdrop-blur-xl border border-white/20">
|
||||
<h2 className="text-xl font-semibold mb-4">In Progress</h2>
|
||||
<div className="h-64 border-2 border-dashed border-white/10 rounded-2xl flex items-center justify-center text-[var(--foreground)]/50">
|
||||
Drop tasks here
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study AI", id: "/study-ai" },
|
||||
{ name: "Planner", id: "/planner" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen p-10 flex flex-col items-center justify-center space-y-6">
|
||||
<h1 className="text-5xl font-bold">Nature-Inspired Planner</h1>
|
||||
</main>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="NeuroFlow"
|
||||
videoSrc="https://player.vimeo.com/external/123456789.sd.mp4?s=123456789&_wi=1"
|
||||
columns={[]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,81 +1,49 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import { Zap, Target, Star, Brain } from "lucide-react";
|
||||
import { MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function StudyAIPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-depth"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study AI", id: "/study-ai" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Pricing", id: "/#pricing" }
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardFourteen
|
||||
title="Your Study XP"
|
||||
tag="Gamified Progression"
|
||||
metrics={[
|
||||
{ id: "1", value: "4,250", description: "Total XP Earned" },
|
||||
{ id: "2", value: "Level 12", description: "Current Study Rank" },
|
||||
{ id: "3", value: "15", description: "Daily Streaks" }
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwelve
|
||||
animationType="blur-reveal"
|
||||
title="Interactive Study Missions"
|
||||
description="Complete your daily checklists to level up your focus and earn rewards."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ id: "1", label: "Mission 01", title: "Deep Focus Session", items: ["25 min pomodoro", "No phone distractions", "Complete 1 task"], buttons: [{ text: "Start Mission" }] },
|
||||
{ id: "2", label: "Mission 02", title: "Knowledge Review", items: ["Summarize lecture notes", "Flashcard drill", "Review missed quiz"], buttons: [{ text: "Start Mission" }] },
|
||||
{ id: "3", label: "Mission 03", title: "Mindful Breaks", items: ["5 min meditation", "Drink water", "Stretch"], buttons: [{ text: "Start Mission" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||
logoText="NeuroFlow"
|
||||
columns={[
|
||||
{ title: "Product", items: [{ label: "Dashboard", href: "/" }, { label: "Study AI", href: "/study-ai" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
|
||||
]}
|
||||
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Study AI", id: "/study-ai" },
|
||||
{ name: "Planner", id: "/planner" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<main className="min-h-screen p-10 flex flex-col items-center justify-center space-y-6">
|
||||
<h1 className="text-5xl font-bold">Study AI Assistant</h1>
|
||||
</main>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="NeuroFlow"
|
||||
videoSrc="https://player.vimeo.com/external/123456789.sd.mp4?s=123456789&_wi=2"
|
||||
columns={[]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,73 +1,63 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Brain, Wind, Sparkles, HeartPulse } from "lucide-react";
|
||||
import { MessageSquareText } from "lucide-react";
|
||||
|
||||
export default function TherapyAiPage() {
|
||||
export default function TherapyAIPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Breathing", id: "#breathing" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ai-orb" data-section="ai-orb" className="min-h-[600px] flex items-center justify-center bg-gradient-to-b from-background to-accent/10">
|
||||
<div className="relative w-64 h-64 rounded-full bg-gradient-to-r from-blue-400 to-purple-500 animate-pulse blur-3xl opacity-30"></div>
|
||||
<div className="absolute flex flex-col items-center">
|
||||
<Brain size={64} className="text-white" />
|
||||
<h1 className="text-4xl font-bold mt-4">Therapy AI</h1>
|
||||
<p className="text-lg opacity-80 mt-2">Your intelligent companion for serenity.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="breathing" data-section="breathing">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
title="Guided Breathing Exercises"
|
||||
description="Reclaim your calm in moments of overwhelm with our immersive, AI-paced breathing sessions."
|
||||
features={[
|
||||
{
|
||||
id: "f1", label: "Box Breathing", title: "Calm the Nervous System", items: ["4-second inhale", "4-second hold", "4-second exhale", "4-second hold"],
|
||||
},
|
||||
{
|
||||
id: "f2", label: "Deep Relief", title: "Stress Reduction", items: ["Slow rhythmic pacing", "Visual guidance", "Auditory cues"],
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||
logoText="NeuroFlow"
|
||||
columns={[]}
|
||||
copyrightText="© 2025 NeuroFlow | AI Wellness"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
<div className="fixed bottom-8 right-8 z-50">
|
||||
<button className="bg-primary-cta text-primary-cta-text p-4 rounded-full shadow-lg hover:scale-110 transition-transform">
|
||||
<MessageSquareText size={24} />
|
||||
</button>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||
]}
|
||||
brandName="NeuroFlow"
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20" id="features" data-section="features">
|
||||
<FeatureCardTwentyNine
|
||||
title="Your AI Therapy Companion"
|
||||
description="AI-driven support designed specifically for neurodivergent minds, providing a safe space for growth and organization."
|
||||
gridVariant="bento-grid"
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Cognitive Reframing", description: "Gentle AI guidance to navigate overwhelming thoughts.", imageSrc: "", titleImageSrc: "", buttonText: "Learn More" },
|
||||
{ title: "Goal Breakdown", description: "Transform large projects into manageable micro-steps.", imageSrc: "", titleImageSrc: "", buttonText: "Get Started" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="NeuroFlow"
|
||||
imageSrc="https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?_wi=2"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user