Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-15 05:54:37 +00:00
4 changed files with 57 additions and 29 deletions

View File

@@ -48,7 +48,7 @@ export default function AboutPage() {
description="We understand that everyone's brain works differently. That's why StudyFlow was created—to remove barriers, not add them."
subdescription="With ADHD-friendly timers, dyslexia-optimized fonts, autism-sensory considerations, and six different study modes, we help you learn the way you learn best. No judgment, no one-size-fits-all. Just real support for real learners."
icon={Heart}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=6"
imageAlt="Accessible note-taking interface with large fonts and visual organization"
mediaAnimation="opacity"
useInvertedBackground={true}
@@ -69,25 +69,25 @@ export default function AboutPage() {
id: 1,
title: "Video Lessons",
description: "High-quality educational videos with adjustable playback speeds, captions, and transcripts. Pause anytime without judgment.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=6",
},
{
id: 2,
title: "Interactive Notes",
description: "Dyslexia-friendly note templates with visual organization, color-coding, and speech-to-text support for easy capture.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=7",
},
{
id: 3,
title: "Podcasts & Audio",
description: "Learn on-the-go with podcast versions of lessons. Perfect for commutes, walks, or when reading feels hard.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=7",
},
{
id: 4,
title: "Focus Music Library",
description: "Curated music and ambient sounds to help with focus and concentration. Choose your vibe: lo-fi, nature sounds, or silence.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-visual-progress-tracking-dashboard-wit-1773554013273-bda8466f.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-visual-progress-tracking-dashboard-wit-1773554013273-bda8466f.png?_wi=2",
},
]}
/>

View File

@@ -1,24 +1,50 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "StudyFlow - Study Made Easy for ADHD, Autism & Dyslexia",
description: "Neurodivergent-friendly learning platform with videos, notes, podcasts, music, chat support. For Year 1 through college, all subjects, 25+ languages. Start free.",
keywords: "ADHD learning, dyslexia-friendly, autism education, inclusive study platform, neurodivergent learning, online courses, study tools, accessible education",
openGraph: {
title: "StudyFlow - Study Made Easy for Your Brain",
description: "The only learning platform truly built for neurodivergent minds. Videos, notes, podcasts, music, and AI chat—all in one accessible place.",
url: "https://studyflow.app",
siteName: "StudyFlow",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "StudyFlow - Study Platform for Everyone",
description: "Learn your way with videos, notes, podcasts, music, and AI support. ADHD, autism, dyslexia friendly.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +53,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +67,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -52,7 +52,7 @@ export default function LearnPage() {
{ text: "View Pricing", href: "/#pricing" }
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png?_wi=1"
imageAlt="Subject library with diverse academic courses"
mediaAnimation="slide-up"
background="radial-gradient"
@@ -83,25 +83,25 @@ export default function LearnPage() {
id: 1,
title: "Mathematics",
description: "From basic arithmetic to calculus. Visual diagrams, step-by-step breakdowns, and practice problems with immediate feedback.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png?_wi=2"
},
{
id: 2,
title: "English Language",
description: "Literature, grammar, and creative writing. Dyslexia-friendly texts, audio narration, and interactive writing tools with real-time support.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=4"
},
{
id: 3,
title: "Science",
description: "Biology, chemistry, physics, and environmental science. Interactive simulations, video demonstrations, and visual learning materials.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=4"
},
{
id: 4,
title: "Study Support",
description: "Time management techniques, exam preparation strategies, and mental wellness resources designed for neurodivergent learners.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-friendly-ai-chat-assistant-interface-f-1773554012750-d914ebc1.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-friendly-ai-chat-assistant-interface-f-1773554012750-d914ebc1.png?_wi=2"
}
]}
/>
@@ -123,21 +123,21 @@ export default function LearnPage() {
id: "gcse-math",
name: "GCSE Mathematics Mastery",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-subject-library-showing-diver-1773554015351-941ac297.png?_wi=3",
imageAlt: "GCSE Mathematics course"
},
{
id: "a-level-english",
name: "A-Level English Literature",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=5",
imageAlt: "A-Level English Literature course"
},
{
id: "ks3-science",
name: "Key Stage 3 Science",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=5",
imageAlt: "Key Stage 3 Science course"
}
]}

View File

@@ -83,7 +83,7 @@ export default function HomePage() {
description="We understand that everyone's brain works differently. That's why StudyFlow was created—to remove barriers, not add them."
subdescription="With ADHD-friendly timers, dyslexia-optimized fonts, autism-sensory considerations, and six different study modes, we help you learn the way you learn best. No judgment, no one-size-fits-all. Just real support for real learners."
icon={Heart}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=1"
imageAlt="Accessible note-taking interface with large fonts and visual organization"
mediaAnimation="opacity"
useInvertedBackground={true}
@@ -104,25 +104,25 @@ export default function HomePage() {
id: 1,
title: "Video Lessons",
description: "High-quality educational videos with adjustable playback speeds, captions, and transcripts. Pause anytime without judgment.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=1"
},
{
id: 2,
title: "Interactive Notes",
description: "Dyslexia-friendly note templates with visual organization, color-coding, and speech-to-text support for easy capture.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=2"
},
{
id: 3,
title: "Podcasts & Audio",
description: "Learn on-the-go with podcast versions of lessons. Perfect for commutes, walks, or when reading feels hard.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=2"
},
{
id: 4,
title: "Focus Music Library",
description: "Curated music and ambient sounds to help with focus and concentration. Choose your vibe: lo-fi, nature sounds, or silence.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-visual-progress-tracking-dashboard-wit-1773554013273-bda8466f.png"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-visual-progress-tracking-dashboard-wit-1773554013273-bda8466f.png?_wi=1"
}
]}
/>
@@ -144,21 +144,21 @@ export default function HomePage() {
id: "video-library",
name: "Video Lessons Library",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-large-easy-to-use-media-player-interfa-1773554013109-7b4ec77b.png?_wi=3",
imageAlt: "Video player with course content"
},
{
id: "note-system",
name: "Smart Notes System",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-colorful-note-taking-interface-with-la-1773554014306-01abeb37.png?_wi=3",
imageAlt: "Accessible note-taking interface"
},
{
id: "ai-chat",
name: "AI Study Tutor",
price: "Included",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-friendly-ai-chat-assistant-interface-f-1773554012750-d914ebc1.png",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ay97msnAsx7j8YMq8wbMAzMUCf/a-friendly-ai-chat-assistant-interface-f-1773554012750-d914ebc1.png?_wi=1",
imageAlt: "AI chat assistant for homework help"
}
]}