Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1a292eb13b | |||
| ece8d0143d | |||
| 377c0e9335 | |||
| 1d54fcc1da | |||
| d9a537a929 | |||
| b40af55fd4 | |||
| 2e15388122 | |||
| fde2a6d977 | |||
| 5951a803b2 | |||
| 5bb9d0b126 | |||
| f9c25452b2 | |||
| d049b83f6a | |||
| acf06203c7 | |||
| dad0cc756f | |||
| fa806257ff | |||
| d5e88202cc | |||
| 48039255c6 |
@@ -1,71 +1,56 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
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 FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import { Brain, Heart, Users } from "lucide-react";
|
||||||
import { Users } from "lucide-react";
|
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="noiseDiagonalGradient"
|
background="circleGradient"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarStyleFullscreen
|
||||||
<NavbarStyleFullscreen
|
navItems={[
|
||||||
navItems={[
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Home", id: "/" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Features", id: "/#features" },
|
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||||
{ name: "Pricing", id: "/#pricing" },
|
]}
|
||||||
]}
|
brandName="NeuroFlow"
|
||||||
brandName="NeuroFlow"
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
<div className="pt-32 pb-20" id="metrics" data-section="metrics">
|
||||||
|
<AboutMetric
|
||||||
<div id="about" data-section="about">
|
title="Our Vision for Calm Productivity"
|
||||||
<TextAbout
|
metrics={[
|
||||||
tag="Our Mission"
|
{ icon: Brain, label: "Focus Science", value: "Evidence-Based" },
|
||||||
tagIcon={Users}
|
{ icon: Heart, label: "Empathy First", value: "Neuro-Inclusive" },
|
||||||
title="Building a Calmer Future for Neurodivergent Minds"
|
{ icon: Users, label: "Community", value: "10k+ Members" },
|
||||||
useInvertedBackground={false}
|
]}
|
||||||
className="py-24"
|
metricsAnimation="blur-reveal"
|
||||||
/>
|
useInvertedBackground={false}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
<div id="contact" data-section="contact">
|
<div id="footer" data-section="footer">
|
||||||
<ContactCenter
|
<FooterMedia
|
||||||
tag="Contact Us"
|
logoText="NeuroFlow"
|
||||||
title="Have questions or want to partner with us?"
|
imageSrc="https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?_wi=1"
|
||||||
description="Reach out to our team—we'd love to hear your story."
|
columns={[
|
||||||
background={{ variant: "rotated-rays-static" }}
|
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Therapy AI", href: "/therapy-ai" }] },
|
||||||
useInvertedBackground={false}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
40
src/app/focus-mode/page.tsx
Normal file
40
src/app/focus-mode/page.tsx
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
|
||||||
|
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 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
160
src/app/page.tsx
160
src/app/page.tsx
@@ -32,12 +32,11 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "About Us", id: "/about" },
|
||||||
name: "Features", id: "#features"},
|
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||||
{
|
{ name: "Study AI", id: "/study-ai" },
|
||||||
name: "Pricing", id: "#pricing"},
|
{ name: "Planner", id: "/planner" },
|
||||||
{
|
{ name: "Focus Mode", id: "/focus-mode" }
|
||||||
name: "Support", id: "#faq"},
|
|
||||||
]}
|
]}
|
||||||
brandName="NeuroFlow"
|
brandName="NeuroFlow"
|
||||||
/>
|
/>
|
||||||
@@ -45,27 +44,17 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardRotatedCarousel
|
<HeroBillboardRotatedCarousel
|
||||||
background={{
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
variant: "rotated-rays-animated"}}
|
|
||||||
title="Start Focusing Smarter"
|
title="Start Focusing Smarter"
|
||||||
description="NeuroFlow is your calm, AI-powered companion designed to help you study, organize, and thrive—free from the overwhelm."
|
description="NeuroFlow is your calm, AI-powered companion designed to help you study, organize, and thrive—free from the overwhelm."
|
||||||
buttons={[
|
buttons={[{ text: "Start Free Trial", href: "#" }]}
|
||||||
{
|
|
||||||
text: "Start Free Trial", href: "#"},
|
|
||||||
]}
|
|
||||||
carouselItems={[
|
carouselItems={[
|
||||||
{
|
{ id: "slide1", imageSrc: "http://img.b2bpic.net/free-photo/high-blurred-spots-black-screen_23-2148241362.jpg", imageAlt: "futuristic dashboard interface" },
|
||||||
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: "slide2", imageSrc: "http://img.b2bpic.net/free-photo/three-smart-blank-screens-wall_53876-160689.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: "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: "slide6", imageSrc: "http://img.b2bpic.net/free-vector/gradient-glassmorphism-mobile-app-template_23-2149440842.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>
|
||||||
@@ -76,21 +65,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{ id: "1", icon: CheckCircle, title: "Tasks Completed", value: "2.4k+" },
|
||||||
id: "1", icon: CheckCircle,
|
{ id: "2", icon: Clock, title: "Focus Hours", value: "1.2k" },
|
||||||
title: "Tasks Completed", value: "2.4k+"},
|
{ id: "3", icon: Zap, title: "XP Points Earned", value: "58k" },
|
||||||
{
|
{ id: "4", icon: TrendingUp, title: "Streaks Built", value: "45" },
|
||||||
id: "2", icon: Clock,
|
{ id: "5", icon: Users, title: "Community Members", value: "10k+" },
|
||||||
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"
|
title="Your Progress"
|
||||||
description="Visualize your journey towards deep focus and sustained productivity."
|
description="Visualize your journey towards deep focus and sustained productivity."
|
||||||
@@ -103,21 +82,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ icon: Lightbulb, title: "AI ADHD Assistant", description: "Gentle, supportive AI guidance for task breakdowns and routines." },
|
||||||
icon: Lightbulb,
|
{ icon: Activity, title: "Gamified Flow", description: "Earn XP, unlock themes, and build streaks through focused work." },
|
||||||
title: "AI ADHD Assistant", description: "Gentle, supportive AI guidance for task breakdowns and routines."},
|
{ 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: Activity,
|
{ icon: ShieldCheck, title: "Privacy First", description: "Your focus habits and tasks remain yours and yours alone." },
|
||||||
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"
|
title="Designed for Clarity"
|
||||||
description="Every feature is crafted to reduce friction and minimize cognitive load."
|
description="Every feature is crafted to reduce friction and minimize cognitive load."
|
||||||
@@ -130,22 +99,8 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
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: "basic", badge: "Essential", price: "$0", subtitle: "Get started for free", buttons: [
|
{ 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"] },
|
||||||
{
|
|
||||||
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"
|
title="Simple Pricing"
|
||||||
description="Choose the perfect plan to support your productivity journey."
|
description="Choose the perfect plan to support your productivity journey."
|
||||||
@@ -158,21 +113,11 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
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: "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,
|
{ 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" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/serious-beautiful-middle-aged-business-woman_1262-3072.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: "2", name: "Mark L.", handle: "@mark_study", testimonial: "The AI assistant changed how I break down projects. No more executive dysfunction anxiety.", rating: 5,
|
{ 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" },
|
||||||
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}
|
showRating={true}
|
||||||
title="Loved by Neurodivergent Humans"
|
title="Loved by Neurodivergent Humans"
|
||||||
@@ -184,16 +129,11 @@ export default function LandingPage() {
|
|||||||
<FaqSplitText
|
<FaqSplitText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{ id: "q1", title: "Is it right for me?", content: "Yes! NeuroFlow is specifically built for neurodivergent minds." },
|
||||||
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: "q2", title: "Is it free?", content: "We offer a generous free tier for daily needs."},
|
{ 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." },
|
||||||
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?"
|
sideTitle="Questions?"
|
||||||
faqsAnimation="blur-reveal"
|
faqsAnimation="blur-reveal"
|
||||||
@@ -208,12 +148,9 @@ export default function LandingPage() {
|
|||||||
title="Latest Insights"
|
title="Latest Insights"
|
||||||
description="Tips for managing ADHD and finding flow."
|
description="Tips for managing ADHD and finding flow."
|
||||||
blogs={[
|
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: "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" },
|
||||||
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>
|
||||||
@@ -221,8 +158,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{ variant: "rotated-rays-static" }}
|
||||||
variant: "rotated-rays-static"}}
|
|
||||||
tag="Get Started"
|
tag="Get Started"
|
||||||
title="Ready to find your flow?"
|
title="Ready to find your flow?"
|
||||||
description="Join thousands who are reclaiming their focus. Sign up today."
|
description="Join thousands who are reclaiming their focus. Sign up today."
|
||||||
@@ -234,22 +170,8 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-light-sunset-projector-lamp_53876-103668.jpg"
|
||||||
logoText="NeuroFlow"
|
logoText="NeuroFlow"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
|
||||||
title: "Company", items: [
|
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||||
{
|
|
||||||
label: "About", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal", items: [
|
|
||||||
{
|
|
||||||
label: "Privacy", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Terms", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
copyrightText="© 2025 NeuroFlow | Calm Productivity"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,62 +1,42 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState } from "react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
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';
|
||||||
|
|
||||||
export default function PlannerPage() {
|
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 (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="soft"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="noiseDiagonalGradient"
|
background="noiseDiagonalGradient"
|
||||||
cardStyle="glass-elevated"
|
cardStyle="soft-shadow"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div className="min-h-screen bg-[var(--background)] p-8">
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarStyleFullscreen
|
||||||
<NavbarStyleFullscreen
|
navItems={[
|
||||||
brandName="NeuroFlow Planner"
|
{ name: "Home", id: "/" },
|
||||||
navItems={[{ name: "Back to Home", id: "/" }]}
|
{ name: "Study AI", id: "/study-ai" },
|
||||||
/>
|
{ name: "Planner", id: "/planner" },
|
||||||
</div>
|
]}
|
||||||
|
brandName="NeuroFlow"
|
||||||
<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>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
<main className="min-h-screen p-10 flex flex-col items-center justify-center space-y-6">
|
||||||
<div className="p-8 rounded-3xl bg-white/10 backdrop-blur-xl border border-white/20">
|
<h1 className="text-5xl font-bold">Nature-Inspired Planner</h1>
|
||||||
<h2 className="text-xl font-semibold mb-4">To Do</h2>
|
</main>
|
||||||
<div className="space-y-4">
|
<div id="footer" data-section="footer">
|
||||||
{tasks.map((task) => (
|
<FooterMedia
|
||||||
<div
|
logoText="NeuroFlow"
|
||||||
key={task.id}
|
videoSrc="https://player.vimeo.com/external/123456789.sd.mp4?s=123456789&_wi=1"
|
||||||
draggable
|
columns={[]}
|
||||||
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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,81 +1,43 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
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";
|
|
||||||
|
|
||||||
export default function StudyAIPage() {
|
export default function StudyAIPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="soft"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="noiseDiagonalGradient"
|
background="noiseDiagonalGradient"
|
||||||
cardStyle="glass-depth"
|
cardStyle="soft-shadow"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarStyleFullscreen
|
||||||
<NavbarStyleFullscreen
|
navItems={[
|
||||||
navItems={[
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Home", id: "/" },
|
{ name: "Study AI", id: "/study-ai" },
|
||||||
{ name: "Study AI", id: "/study-ai" },
|
{ name: "Planner", id: "/planner" },
|
||||||
{ name: "Features", id: "/#features" },
|
]}
|
||||||
{ name: "Pricing", id: "/#pricing" }
|
brandName="NeuroFlow"
|
||||||
]}
|
/>
|
||||||
brandName="NeuroFlow"
|
</div>
|
||||||
/>
|
<main className="min-h-screen p-10 flex flex-col items-center justify-center space-y-6">
|
||||||
</div>
|
<h1 className="text-5xl font-bold">Study AI Assistant</h1>
|
||||||
|
</main>
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="footer" data-section="footer">
|
||||||
<MetricCardFourteen
|
<FooterMedia
|
||||||
title="Your Study XP"
|
logoText="NeuroFlow"
|
||||||
tag="Gamified Progression"
|
videoSrc="https://player.vimeo.com/external/123456789.sd.mp4?s=123456789&_wi=2"
|
||||||
metrics={[
|
columns={[]}
|
||||||
{ id: "1", value: "4,250", description: "Total XP Earned" },
|
/>
|
||||||
{ id: "2", value: "Level 12", description: "Current Study Rank" },
|
</div>
|
||||||
{ 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>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -1,73 +1,57 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
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 FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import { Brain, Wind, Sparkles, HeartPulse } from "lucide-react";
|
|
||||||
|
|
||||||
export default function TherapyAiPage() {
|
export default function TherapyAIPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="medium"
|
||||||
background="noiseDiagonalGradient"
|
background="circleGradient"
|
||||||
cardStyle="glass-depth"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<div id="nav" data-section="nav">
|
||||||
<div id="nav" data-section="nav">
|
<NavbarStyleFullscreen
|
||||||
<NavbarStyleFullscreen
|
navItems={[
|
||||||
navItems={[
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Home", id: "/" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Breathing", id: "#breathing" },
|
{ name: "Therapy AI", id: "/therapy-ai" },
|
||||||
]}
|
]}
|
||||||
brandName="NeuroFlow"
|
brandName="NeuroFlow"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="pt-32 pb-20" id="features" data-section="features">
|
||||||
<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">
|
<FeatureCardTwentyNine
|
||||||
<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>
|
title="Your AI Therapy Companion"
|
||||||
<div className="absolute flex flex-col items-center">
|
description="AI-driven support designed specifically for neurodivergent minds, providing a safe space for growth and organization."
|
||||||
<Brain size={64} className="text-white" />
|
gridVariant="bento-grid"
|
||||||
<h1 className="text-4xl font-bold mt-4">Therapy AI</h1>
|
animationType="blur-reveal"
|
||||||
<p className="text-lg opacity-80 mt-2">Your intelligent companion for serenity.</p>
|
textboxLayout="split"
|
||||||
</div>
|
useInvertedBackground={false}
|
||||||
</div>
|
features={[
|
||||||
|
{ title: "Cognitive Reframing", description: "Gentle AI guidance to navigate overwhelming thoughts.", imageSrc: "", titleImageSrc: "", buttonText: "Learn More" },
|
||||||
<div id="breathing" data-section="breathing">
|
{ title: "Goal Breakdown", description: "Transform large projects into manageable micro-steps.", imageSrc: "", titleImageSrc: "", buttonText: "Get Started" },
|
||||||
<FeatureCardTwelve
|
]}
|
||||||
animationType="slide-up"
|
/>
|
||||||
textboxLayout="split"
|
</div>
|
||||||
useInvertedBackground={true}
|
<div id="footer" data-section="footer">
|
||||||
title="Guided Breathing Exercises"
|
<FooterMedia
|
||||||
description="Reclaim your calm in moments of overwhelm with our immersive, AI-paced breathing sessions."
|
logoText="NeuroFlow"
|
||||||
features={[
|
imageSrc="https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?_wi=2"
|
||||||
{
|
columns={[
|
||||||
id: "f1", label: "Box Breathing", title: "Calm the Nervous System", items: ["4-second inhale", "4-second hold", "4-second exhale", "4-second hold"],
|
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
|
||||||
},
|
]}
|
||||||
{
|
/>
|
||||||
id: "f2", label: "Deep Relief", title: "Stress Reduction", items: ["Slow rhythmic pacing", "Visual guidance", "Auditory cues"],
|
</div>
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</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>
|
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user