Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-17 14:33:03 +00:00
4 changed files with 45 additions and 22 deletions

View File

@@ -50,7 +50,7 @@ export default function CommunityPage() {
description="StudyFlow reimagines how students study by blending powerful productivity tools with vibrant social features."
subdescription="We believe learning should be engaging, social, and supported by intelligent AI. Our platform combines the best of educational technology with the community-driven experience students love."
icon={Heart}
imageSrc="http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=2"
imageAlt="Diverse students learning together"
mediaAnimation="slide-up"
useInvertedBackground={true}

View File

@@ -57,7 +57,7 @@ export default function FeaturesPage() {
title: "Pomodoro Timer",
subtitle: "Maximize Focus Sessions",
description: "25/50-minute focus intervals with animated countdowns, study hour tracking, and motivational notifications to keep you engaged and productive throughout your study sessions.",
imageSrc: "http://img.b2bpic.net/free-vector/colorful-business-landing-page_52683-990.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/colorful-business-landing-page_52683-990.jpg?_wi=2",
imageAlt: "Pomodoro timer interface",
},
{
@@ -66,7 +66,7 @@ export default function FeaturesPage() {
title: "Social Feed",
subtitle: "TikTok-Style Learning",
description: "Share study guides, notes, videos, and content vertically. Like, comment, repost, and follow creators in your learning community. Build your study network and discover valuable content from peers.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-fair-haired-females-taking-selfie-park-focus-phone_181624-51869.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-fair-haired-females-taking-selfie-park-focus-phone_181624-51869.jpg?_wi=2",
imageAlt: "Social media feed interface",
},
{
@@ -75,7 +75,7 @@ export default function FeaturesPage() {
title: "AI Study Chat",
subtitle: "Your Personal Tutor",
description: "Multi-language AI assistant powered by advanced LLMs. Get instant answers, explanations, and personalized study guidance anytime. Your personal tutor available 24/7 across all subjects.",
imageSrc: "http://img.b2bpic.net/free-vector/chatbot-concept-background-flat-style_23-2147826453.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/chatbot-concept-background-flat-style_23-2147826453.jpg?_wi=2",
imageAlt: "AI chatbot conversation",
},
{
@@ -84,7 +84,7 @@ export default function FeaturesPage() {
title: "Smart Flashcards",
subtitle: "Spaced Repetition",
description: "Create custom flashcards with flip animations. Track progress and master any subject using proven spaced repetition learning techniques that optimize memory retention.",
imageSrc: "http://img.b2bpic.net/free-photo/world-happy-pride-day-stationery-items_23-2148516297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/world-happy-pride-day-stationery-items_23-2148516297.jpg?_wi=2",
imageAlt: "Flashcard learning interface",
},
{
@@ -93,7 +93,7 @@ export default function FeaturesPage() {
title: "Real-Time Calls",
subtitle: "Study Together Live",
description: "WebRTC-powered video and audio calls with friends. Study sessions, peer tutoring, or group projects—all in real-time with crystal-clear quality and minimal latency.",
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-communicates-with-her-son-via-video-link-through-laptop_169016-27305.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-communicates-with-her-son-via-video-link-through-laptop_169016-27305.jpg?_wi=2",
imageAlt: "Video call interface",
},
{
@@ -102,7 +102,7 @@ export default function FeaturesPage() {
title: "Leaderboards",
subtitle: "Friendly Competition",
description: "Global and friends leaderboards tracking study hours. Weekly resets, achievements, and motivational rankings fuel healthy competition and sustained engagement with learning.",
imageSrc: "http://img.b2bpic.net/free-vector/infographic-dashboard-element-set_23-2148375527.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/infographic-dashboard-element-set_23-2148375527.jpg?_wi=2",
imageAlt: "Leaderboard ranking interface",
},
]}

View File

@@ -1,24 +1,45 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "StudyFlow - AI-Powered Social Study Platform",
description: "Learn smarter with AI tutoring, social features, and real-time collaboration. Join 50K+ students on StudyFlow.",
keywords: "study platform, AI learning, social learning, productivity timer, flashcards, educational technology",
openGraph: {
title: "StudyFlow - AI-Powered Social Study Platform",
description: "Learn smarter with AI tutoring, social features, and real-time collaboration.",
type: "website",
siteName: "StudyFlow",
},
twitter: {
card: "summary_large_image",
title: "StudyFlow - AI-Powered Social Study Platform",
description: "Learn smarter with AI tutoring, social features, and real-time collaboration.",
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +48,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +62,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -116,7 +116,7 @@ export default function HomePage() {
title: "Pomodoro Timer",
subtitle: "Maximize Focus Sessions",
description: "25/50-minute focus intervals with animated countdowns, study hour tracking, and motivational notifications to keep you engaged.",
imageSrc: "http://img.b2bpic.net/free-vector/colorful-business-landing-page_52683-990.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/colorful-business-landing-page_52683-990.jpg?_wi=1",
imageAlt: "Pomodoro timer interface",
},
{
@@ -125,7 +125,7 @@ export default function HomePage() {
title: "Social Feed",
subtitle: "TikTok-Style Learning",
description: "Share study guides, notes, videos, and content vertically. Like, comment, repost, and follow creators in your learning community.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-fair-haired-females-taking-selfie-park-focus-phone_181624-51869.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-fair-haired-females-taking-selfie-park-focus-phone_181624-51869.jpg?_wi=1",
imageAlt: "Social media feed interface",
},
{
@@ -134,7 +134,7 @@ export default function HomePage() {
title: "AI Study Chat",
subtitle: "Your Personal Tutor",
description: "Multi-language AI assistant powered by advanced LLMs. Get instant answers, explanations, and personalized study guidance anytime.",
imageSrc: "http://img.b2bpic.net/free-vector/chatbot-concept-background-flat-style_23-2147826453.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/chatbot-concept-background-flat-style_23-2147826453.jpg?_wi=1",
imageAlt: "AI chatbot conversation",
},
{
@@ -143,7 +143,7 @@ export default function HomePage() {
title: "Smart Flashcards",
subtitle: "Spaced Repetition",
description: "Create custom flashcards with flip animations. Track progress and master any subject using proven learning techniques.",
imageSrc: "http://img.b2bpic.net/free-photo/world-happy-pride-day-stationery-items_23-2148516297.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/world-happy-pride-day-stationery-items_23-2148516297.jpg?_wi=1",
imageAlt: "Flashcard learning interface",
},
{
@@ -152,7 +152,7 @@ export default function HomePage() {
title: "Real-Time Calls",
subtitle: "Study Together Live",
description: "WebRTC-powered video and audio calls with friends. Study sessions, peer tutoring, or group projects—all in real-time.",
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-communicates-with-her-son-via-video-link-through-laptop_169016-27305.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/old-woman-communicates-with-her-son-via-video-link-through-laptop_169016-27305.jpg?_wi=1",
imageAlt: "Video call interface",
},
{
@@ -161,7 +161,7 @@ export default function HomePage() {
title: "Leaderboards",
subtitle: "Friendly Competition",
description: "Global and friends leaderboards tracking study hours. Weekly resets, achievements, and motivational rankings fuel engagement.",
imageSrc: "http://img.b2bpic.net/free-vector/infographic-dashboard-element-set_23-2148375527.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/infographic-dashboard-element-set_23-2148375527.jpg?_wi=1",
imageAlt: "Leaderboard ranking interface",
},
]}
@@ -183,7 +183,7 @@ export default function HomePage() {
description="StudyFlow reimagines how students study by blending powerful productivity tools with vibrant social features."
subdescription="We believe learning should be engaging, social, and supported by intelligent AI. Our platform combines the best of educational technology with the community-driven experience students love."
icon={Target}
imageSrc="http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg"
imageSrc="http://img.b2bpic.net/free-photo/colleagues-doing-team-work-project_23-2149361577.jpg?_wi=1"
imageAlt="Diverse students learning together"
mediaAnimation="slide-up"
useInvertedBackground={true}