Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab7e88779d | |||
| a2454bda74 |
108
src/app/about/page.tsx
Normal file
108
src/app/about/page.tsx
Normal file
@@ -0,0 +1,108 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Target } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="fluid"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Dashboard", id: "/#dashboard" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Resources", id: "/resources" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
]}
|
||||
brandName="ExamSphere AI"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-content" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
title="Empowering Students for Academic Success"
|
||||
description="ExamSphere AI was founded on the belief that every student deserves personalized, effective learning tools. We're dedicated to transforming how students prepare for exams."
|
||||
subdescription="Our innovative AI-powered platform provides intelligent quizzes, an adaptive AI tutor, comprehensive analytics, and engaging study communities to unlock your full potential."
|
||||
icon={Target}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-students-studying_23-2147690656.jpg"
|
||||
imageAlt="Students collaborating and studying"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Solutions", items: [
|
||||
{
|
||||
label: "AI Quizzes", href: "/#features"},
|
||||
{
|
||||
label: "AI Tutor", href: "/#features"},
|
||||
{
|
||||
label: "Analytics", href: "/#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Blog", href: "/blog"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Help Center", href: "/resources"},
|
||||
{
|
||||
label: "Privacy Policy", href: "/resources#privacy-policy"},
|
||||
{
|
||||
label: "Terms of Service", href: "/resources#terms-of-service"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us", href: "/#contact"},
|
||||
{
|
||||
label: "Twitter", href: "https://twitter.com/examsphereai"},
|
||||
{
|
||||
label: "LinkedIn", href: "https://linkedin.com/company/examsphereai"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 ExamSphere AI. All rights reserved."
|
||||
bottomRightText="Made with ❤️ for students"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
337
src/app/page.tsx
337
src/app/page.tsx
@@ -32,30 +32,16 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Features",
|
||||
id: "#features",
|
||||
},
|
||||
{
|
||||
name: "Dashboard",
|
||||
id: "#dashboard",
|
||||
},
|
||||
{
|
||||
name: "Pricing",
|
||||
id: "#pricing",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "#testimonials",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Features", id: "/#features" },
|
||||
{ name: "Dashboard", id: "/#dashboard" },
|
||||
{ name: "Pricing", id: "/#pricing" },
|
||||
{ name: "Testimonials", id: "/#testimonials" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Blog", id: "/blog" },
|
||||
{ name: "Resources", id: "/resources" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" }
|
||||
]}
|
||||
brandName="ExamSphere AI"
|
||||
/>
|
||||
@@ -64,19 +50,14 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Study Smarter. Score Higher. With AI."
|
||||
description="Generate quizzes, learn with AI tutors, track your progress, and ace your exams."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "#",
|
||||
},
|
||||
text: "Get Started", href: "#"},
|
||||
{
|
||||
text: "Try Demo",
|
||||
href: "#",
|
||||
},
|
||||
text: "Try Demo", href: "#"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-33533.jpg"
|
||||
imageAlt="ExamSphere AI dashboard preview"
|
||||
@@ -90,70 +71,25 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "ai-tutor",
|
||||
title: "AI Tutor",
|
||||
author: "Personalized Guidance",
|
||||
description: "Get instant, personalized explanations and guidance from your dedicated AI tutor, available 24/7.",
|
||||
tags: [
|
||||
"AI",
|
||||
"Support",
|
||||
"Personalized",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/educational-concepts_23-2147502362.jpg",
|
||||
imageAlt: "AI Tutor icon",
|
||||
},
|
||||
id: "ai-tutor", title: "AI Tutor", author: "Personalized Guidance", description: "Get instant, personalized explanations and guidance from your dedicated AI tutor, available 24/7.", tags: [
|
||||
"AI", "Support", "Personalized"],
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/educational-concepts_23-2147502362.jpg", imageAlt: "AI Tutor icon"},
|
||||
{
|
||||
id: "quiz-generator",
|
||||
title: "Smart Quiz Generator",
|
||||
author: "Master Concepts Faster",
|
||||
description: "Create custom quizzes on any topic, tailored to your learning style and difficulty level, to master concepts faster.",
|
||||
tags: [
|
||||
"Quizzes",
|
||||
"Practice",
|
||||
"Adaptive",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-paper-cutout-yellow-border-frame-blue-background_23-2147873481.jpg",
|
||||
imageAlt: "Smart Quiz Generator icon",
|
||||
},
|
||||
id: "quiz-generator", title: "Smart Quiz Generator", author: "Master Concepts Faster", description: "Create custom quizzes on any topic, tailored to your learning style and difficulty level, to master concepts faster.", tags: [
|
||||
"Quizzes", "Practice", "Adaptive"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-paper-cutout-yellow-border-frame-blue-background_23-2147873481.jpg", imageAlt: "Smart Quiz Generator icon"},
|
||||
{
|
||||
id: "performance-analytics",
|
||||
title: "Performance Analytics",
|
||||
author: "Track Your Progress",
|
||||
description: "Track your strengths and weaknesses with detailed reports, identify areas for improvement, and monitor your progress over time.",
|
||||
tags: [
|
||||
"Analytics",
|
||||
"Insights",
|
||||
"Growth",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-books-digital-art-style-education-day_23-2151164355.jpg",
|
||||
imageAlt: "Performance Analytics icon",
|
||||
},
|
||||
id: "performance-analytics", title: "Performance Analytics", author: "Track Your Progress", description: "Track your strengths and weaknesses with detailed reports, identify areas for improvement, and monitor your progress over time.", tags: [
|
||||
"Analytics", "Insights", "Growth"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-with-books-digital-art-style-education-day_23-2151164355.jpg", imageAlt: "Performance Analytics icon"},
|
||||
{
|
||||
id: "leaderboards-streaks",
|
||||
title: "Leaderboards & Streaks",
|
||||
author: "Stay Motivated",
|
||||
description: "Stay motivated and challenge friends or classmates with engaging leaderboards and daily study streaks.",
|
||||
tags: [
|
||||
"Gamified",
|
||||
"Motivation",
|
||||
"Community",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/green-button-with-white-trophy-star-award-winning-achievement-success_84443-55769.jpg",
|
||||
imageAlt: "Leaderboards & Streaks icon",
|
||||
},
|
||||
id: "leaderboards-streaks", title: "Leaderboards & Streaks", author: "Stay Motivated", description: "Stay motivated and challenge friends or classmates with engaging leaderboards and daily study streaks.", tags: [
|
||||
"Gamified", "Motivation", "Community"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/green-button-with-white-trophy-star-award-winning-achievement-success_84443-55769.jpg", imageAlt: "Leaderboards & Streaks icon"},
|
||||
{
|
||||
id: "study-communities",
|
||||
title: "Study Communities",
|
||||
author: "Collaborate & Connect",
|
||||
description: "Connect with peers, share resources, and collaborate on study goals in vibrant, supportive communities.",
|
||||
tags: [
|
||||
"Community",
|
||||
"Collaboration",
|
||||
"Support",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-meeting-stylish-cafe_23-2152013703.jpg",
|
||||
imageAlt: "Study Communities icon",
|
||||
},
|
||||
id: "study-communities", title: "Study Communities", author: "Collaborate & Connect", description: "Connect with peers, share resources, and collaborate on study goals in vibrant, supportive communities.", tags: [
|
||||
"Community", "Collaboration", "Support"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teamwork-meeting-stylish-cafe_23-2152013703.jpg", imageAlt: "Study Communities icon"},
|
||||
]}
|
||||
title="Unlock Your Full Potential with AI"
|
||||
description="ExamSphere AI offers a suite of powerful tools designed to personalize your learning journey and maximize your academic success."
|
||||
@@ -169,47 +105,17 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
products={[
|
||||
{
|
||||
id: "dashboard-home",
|
||||
name: "Personalized Home",
|
||||
price: "Your hub for all learning activities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-books-versus-technology_23-2150063054.jpg",
|
||||
imageAlt: "ExamSphere AI personalized dashboard home screen",
|
||||
},
|
||||
id: "dashboard-home", name: "Personalized Home", price: "Your hub for all learning activities.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-books-versus-technology_23-2150063054.jpg", imageAlt: "ExamSphere AI personalized dashboard home screen"},
|
||||
{
|
||||
id: "quiz-builder",
|
||||
name: "Advanced Quiz Builder",
|
||||
price: "Craft quizzes tailored to your needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/learn-education-study-lesson-graphic_53876-120351.jpg",
|
||||
imageAlt: "ExamSphere AI advanced quiz builder interface",
|
||||
},
|
||||
id: "quiz-builder", name: "Advanced Quiz Builder", price: "Craft quizzes tailored to your needs.", imageSrc: "http://img.b2bpic.net/free-photo/learn-education-study-lesson-graphic_53876-120351.jpg", imageAlt: "ExamSphere AI advanced quiz builder interface"},
|
||||
{
|
||||
id: "ai-tutor-chat",
|
||||
name: "Interactive AI Tutor",
|
||||
price: "Get instant answers and explanations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adolescent-therapy-session-focused-mental-health-isolated-mockup_482257-121533.jpg",
|
||||
imageAlt: "ExamSphere AI interactive AI tutor chat",
|
||||
},
|
||||
id: "ai-tutor-chat", name: "Interactive AI Tutor", price: "Get instant answers and explanations.", imageSrc: "http://img.b2bpic.net/free-photo/adolescent-therapy-session-focused-mental-health-isolated-mockup_482257-121533.jpg", imageAlt: "ExamSphere AI interactive AI tutor chat"},
|
||||
{
|
||||
id: "analytics-overview",
|
||||
name: "Detailed Analytics",
|
||||
price: "Visualize your progress and insights.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-boardroom-computer-screen-showcases-business-data-statistics-aiding-executives_482257-133141.jpg",
|
||||
imageAlt: "ExamSphere AI detailed performance analytics",
|
||||
},
|
||||
id: "analytics-overview", name: "Detailed Analytics", price: "Visualize your progress and insights.", imageSrc: "http://img.b2bpic.net/free-photo/professional-boardroom-computer-screen-showcases-business-data-statistics-aiding-executives_482257-133141.jpg", imageAlt: "ExamSphere AI detailed performance analytics"},
|
||||
{
|
||||
id: "community-forum",
|
||||
name: "Engaging Study Communities",
|
||||
price: "Connect, collaborate, and share.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-country-musicians-indoors_23-2151169681.jpg",
|
||||
imageAlt: "ExamSphere AI study community forum",
|
||||
},
|
||||
id: "community-forum", name: "Engaging Study Communities", price: "Connect, collaborate, and share.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-country-musicians-indoors_23-2151169681.jpg", imageAlt: "ExamSphere AI study community forum"},
|
||||
{
|
||||
id: "learning-path",
|
||||
name: "Adaptive Learning Paths",
|
||||
price: "Follow a personalized roadmap to success.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-red-hair-working-laptop-holding-folder_651396-3621.jpg",
|
||||
imageAlt: "ExamSphere AI adaptive learning path",
|
||||
},
|
||||
id: "learning-path", name: "Adaptive Learning Paths", price: "Follow a personalized roadmap to success.", imageSrc: "http://img.b2bpic.net/free-photo/girl-with-red-hair-working-laptop-holding-folder_651396-3621.jpg", imageAlt: "ExamSphere AI adaptive learning path"},
|
||||
]}
|
||||
title="A Glimpse into Your Smarter Study Experience"
|
||||
description="Explore the intuitive design and powerful features that make ExamSphere AI your ultimate learning companion."
|
||||
@@ -221,14 +127,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Global University",
|
||||
"Academic Success Inc.",
|
||||
"Student Hub Network",
|
||||
"Learner's Edge",
|
||||
"Future Leaders Academy",
|
||||
"Exam Prep Central",
|
||||
"StudySmart Collective",
|
||||
]}
|
||||
"Global University", "Academic Success Inc.", "Student Hub Network", "Learner's Edge", "Future Leaders Academy", "Exam Prep Central", "StudySmart Collective"]}
|
||||
title="Trusted by Students Worldwide"
|
||||
description="Join thousands of students who are achieving their academic goals with ExamSphere AI."
|
||||
/>
|
||||
@@ -242,45 +141,15 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Chen",
|
||||
role: "University Student",
|
||||
testimonial: "ExamSphere AI is a game-changer! The AI tutor clarifies complex topics instantly, and the quizzes truly test my understanding, making studying so much more effective.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-student-smiling-with-book-head_23-2148208755.jpg",
|
||||
imageAlt: "Sarah Chen, University Student",
|
||||
},
|
||||
id: "1", name: "Sarah Chen", role: "University Student", testimonial: "ExamSphere AI is a game-changer! The AI tutor clarifies complex topics instantly, and the quizzes truly test my understanding, making studying so much more effective.", imageSrc: "http://img.b2bpic.net/free-photo/teenage-student-smiling-with-book-head_23-2148208755.jpg", imageAlt: "Sarah Chen, University Student"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Alex Rodriguez",
|
||||
role: "High School Senior",
|
||||
testimonial: "My grades have soared since using ExamSphere. The performance analytics helped me focus exactly where I needed to improve, turning my weak spots into strengths.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-woman-smiling_23-2148369437.jpg",
|
||||
imageAlt: "Alex Rodriguez, High School Senior",
|
||||
},
|
||||
id: "2", name: "Alex Rodriguez", role: "High School Senior", testimonial: "My grades have soared since using ExamSphere. The performance analytics helped me focus exactly where I needed to improve, turning my weak spots into strengths.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-woman-smiling_23-2148369437.jpg", imageAlt: "Alex Rodriguez, High School Senior"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Maya Singh",
|
||||
role: "Graduate Student",
|
||||
testimonial: "I love the community features! It's great to connect with other students and share study tips and resources. The support has been invaluable for my research. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-blond-woman-showing-surrender-gesture-green-jacket-looking-merry-front-view_176474-71771.jpg",
|
||||
imageAlt: "Maya Singh, Graduate Student",
|
||||
},
|
||||
id: "3", name: "Maya Singh", role: "Graduate Student", testimonial: "I love the community features! It's great to connect with other students and share study tips and resources. The support has been invaluable for my research. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-pretty-blond-woman-showing-surrender-gesture-green-jacket-looking-merry-front-view_176474-71771.jpg", imageAlt: "Maya Singh, Graduate Student"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Lee",
|
||||
role: "College Freshman",
|
||||
testimonial: "The smart quiz generator is incredible. I can create practice tests for any subject and feel much more confident for exams, especially with the adaptive difficulty levels.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-asian-girl-hat-scarf-walks-around-town-chilly-spring-weather-smiles-l_1258-151513.jpg",
|
||||
imageAlt: "David Lee, College Freshman",
|
||||
},
|
||||
id: "4", name: "David Lee", role: "College Freshman", testimonial: "The smart quiz generator is incredible. I can create practice tests for any subject and feel much more confident for exams, especially with the adaptive difficulty levels.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-cute-asian-girl-hat-scarf-walks-around-town-chilly-spring-weather-smiles-l_1258-151513.jpg", imageAlt: "David Lee, College Freshman"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Emily White",
|
||||
role: "Online Learner",
|
||||
testimonial: "Finally, an app that makes studying engaging. The streaks and leaderboards keep me motivated every day to push my limits and achieve my learning goals!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-teenager-showing-black-diary_1187-1314.jpg",
|
||||
imageAlt: "Emily White, Online Learner",
|
||||
},
|
||||
id: "5", name: "Emily White", role: "Online Learner", testimonial: "Finally, an app that makes studying engaging. The streaks and leaderboards keep me motivated every day to push my limits and achieve my learning goals!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-teenager-showing-black-diary_1187-1314.jpg", imageAlt: "Emily White, Online Learner"},
|
||||
]}
|
||||
title="Hear From Our Successful Students"
|
||||
description="Don't just take our word for it. See how ExamSphere AI has transformed their academic journeys."
|
||||
@@ -295,44 +164,22 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
plans={[
|
||||
{
|
||||
id: "free",
|
||||
badge: "Start Free",
|
||||
badgeIcon: Sparkles,
|
||||
price: "$0",
|
||||
name: "Basic",
|
||||
buttons: [
|
||||
id: "free", badge: "Start Free", badgeIcon: Sparkles,
|
||||
price: "$0", name: "Basic", buttons: [
|
||||
{
|
||||
text: "Get Started Free",
|
||||
href: "#",
|
||||
},
|
||||
text: "Get Started Free", href: "#"},
|
||||
],
|
||||
features: [
|
||||
"Basic Quiz Generator",
|
||||
"Limited AI Tutor Access",
|
||||
"Basic Performance Analytics",
|
||||
"Access to public communities",
|
||||
],
|
||||
"Basic Quiz Generator", "Limited AI Tutor Access", "Basic Performance Analytics", "Access to public communities"],
|
||||
},
|
||||
{
|
||||
id: "premium",
|
||||
badge: "Most Popular",
|
||||
badgeIcon: Award,
|
||||
price: "$9.99/month",
|
||||
name: "Premium",
|
||||
buttons: [
|
||||
id: "premium", badge: "Most Popular", badgeIcon: Award,
|
||||
price: "$9.99/month", name: "Premium", buttons: [
|
||||
{
|
||||
text: "Upgrade Now",
|
||||
href: "#",
|
||||
},
|
||||
text: "Upgrade Now", href: "#"},
|
||||
],
|
||||
features: [
|
||||
"Unlimited Quiz Generation",
|
||||
"24/7 AI Tutor Access",
|
||||
"Advanced Performance Analytics",
|
||||
"Leaderboards & Streaks",
|
||||
"Private Study Communities",
|
||||
"Priority Support",
|
||||
],
|
||||
"Unlimited Quiz Generation", "24/7 AI Tutor Access", "Advanced Performance Analytics", "Leaderboards & Streaks", "Private Study Communities", "Priority Support"],
|
||||
},
|
||||
]}
|
||||
title="Flexible Plans for Every Student"
|
||||
@@ -346,30 +193,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1",
|
||||
title: "What is ExamSphere AI?",
|
||||
content: "ExamSphere AI is an advanced learning platform that leverages artificial intelligence to help students prepare for exams. It offers features like AI-powered quiz generation, an intelligent tutor, performance analytics, and study communities.",
|
||||
},
|
||||
id: "faq-1", title: "What is ExamSphere AI?", content: "ExamSphere AI is an advanced learning platform that leverages artificial intelligence to help students prepare for exams. It offers features like AI-powered quiz generation, an intelligent tutor, performance analytics, and study communities."},
|
||||
{
|
||||
id: "faq-2",
|
||||
title: "How does the AI Tutor work?",
|
||||
content: "Our AI Tutor provides personalized explanations, answers questions, and guides you through complex topics in real-time, adapting to your learning style to ensure deep understanding.",
|
||||
},
|
||||
id: "faq-2", title: "How does the AI Tutor work?", content: "Our AI Tutor provides personalized explanations, answers questions, and guides you through complex topics in real-time, adapting to your learning style to ensure deep understanding."},
|
||||
{
|
||||
id: "faq-3",
|
||||
title: "Can I track my progress?",
|
||||
content: "Yes, ExamSphere AI includes comprehensive performance analytics that track your strengths, weaknesses, and overall progress, helping you identify areas for improvement and monitor your growth.",
|
||||
},
|
||||
id: "faq-3", title: "Can I track my progress?", content: "Yes, ExamSphere AI includes comprehensive performance analytics that track your strengths, weaknesses, and overall progress, helping you identify areas for improvement and monitor your growth."},
|
||||
{
|
||||
id: "faq-4",
|
||||
title: "Is there a free version available?",
|
||||
content: "Absolutely! We offer a free plan that includes basic quiz generation and limited AI Tutor access, allowing you to experience the core benefits of ExamSphere AI before upgrading.",
|
||||
},
|
||||
id: "faq-4", title: "Is there a free version available?", content: "Absolutely! We offer a free plan that includes basic quiz generation and limited AI Tutor access, allowing you to experience the core benefits of ExamSphere AI before upgrading."},
|
||||
{
|
||||
id: "faq-5",
|
||||
title: "What subjects does ExamSphere AI cover?",
|
||||
content: "ExamSphere AI is designed to be versatile and can generate quizzes and provide tutoring for a wide range of subjects, from mathematics and science to history and literature. Our AI is continuously learning to expand its knowledge base.",
|
||||
},
|
||||
id: "faq-5", title: "What subjects does ExamSphere AI cover?", content: "ExamSphere AI is designed to be versatile and can generate quizzes and provide tutoring for a wide range of subjects, from mathematics and science to history and literature. Our AI is continuously learning to expand its knowledge base."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about ExamSphere AI and how it can boost your academic performance."
|
||||
@@ -381,8 +213,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Ready to Learn Smarter?"
|
||||
title="Join ExamSphere AI Today!"
|
||||
description="Sign up for a free account to generate quizzes, learn with AI tutors, and start acing your exams."
|
||||
@@ -400,71 +231,43 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Solutions",
|
||||
items: [
|
||||
title: "Solutions", items: [
|
||||
{
|
||||
label: "AI Quizzes",
|
||||
href: "#",
|
||||
},
|
||||
label: "AI Quizzes", href: "/#features"},
|
||||
{
|
||||
label: "AI Tutor",
|
||||
href: "#",
|
||||
},
|
||||
label: "AI Tutor", href: "/#features"},
|
||||
{
|
||||
label: "Analytics",
|
||||
href: "#",
|
||||
},
|
||||
label: "Analytics", href: "/#features"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Blog",
|
||||
href: "#",
|
||||
},
|
||||
label: "Blog", href: "/blog"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Help Center",
|
||||
href: "#",
|
||||
},
|
||||
label: "Help Center", href: "/resources"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "/resources#privacy-policy"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "/resources#terms-of-service"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect",
|
||||
items: [
|
||||
title: "Connect", items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "Contact Us", href: "/#contact"},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "https://twitter.com/examsphereai",
|
||||
},
|
||||
label: "Twitter", href: "https://twitter.com/examsphereai"},
|
||||
{
|
||||
label: "LinkedIn",
|
||||
href: "https://linkedin.com/company/examsphereai",
|
||||
},
|
||||
label: "LinkedIn", href: "https://linkedin.com/company/examsphereai"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user