Update src/app/plan/page.tsx
This commit is contained in:
@@ -6,7 +6,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import { Award, Calendar, CheckSquare, Search, Share2, Sparkles } from "lucide-react";
|
||||
import { Award, Calendar, CheckSquare, Search, Share2, Sparkles, FolderKanban, BellDot, BarChart3 } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -27,21 +27,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Plan",
|
||||
id: "/plan",
|
||||
},
|
||||
name: "Plan", id: "/plan"},
|
||||
{
|
||||
name: "Settings",
|
||||
id: "/settings",
|
||||
},
|
||||
name: "Settings", id: "/settings"},
|
||||
{
|
||||
name: "Account",
|
||||
id: "/account",
|
||||
},
|
||||
name: "Account", id: "/account"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/education-business-logo-template-branding-design-vector-learning-institution-text_53876-151216.jpg"
|
||||
logoAlt="StudyBalance Logo"
|
||||
@@ -49,9 +41,7 @@ export default function LandingPage() {
|
||||
bottomLeftText="💰 Streaks"
|
||||
bottomRightText="❓ Help"
|
||||
button={{
|
||||
text: "Log In",
|
||||
href: "/account",
|
||||
}}
|
||||
text: "Log In", href: "/account"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -62,61 +52,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "free",
|
||||
title: "Free",
|
||||
price: "$0",
|
||||
period: "per month",
|
||||
features: [
|
||||
"Organized Notes",
|
||||
"To-Do List",
|
||||
"3 Free Study Plans",
|
||||
"20 Free Revision Materials",
|
||||
],
|
||||
id: "free", title: "Free", price: "$0", period: "per month", features: [
|
||||
"Organized Notes", "To-Do List", "3 Free Study Plans", "20 Free Revision Materials"],
|
||||
button: {
|
||||
text: "Get Started Free",
|
||||
href: "/account",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-desk-concept-with-copy-space_23-2148459770.jpg",
|
||||
imageAlt: "Free Plan",
|
||||
},
|
||||
text: "Get Started Free", href: "/account"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-desk-concept-with-copy-space_23-2148459770.jpg", imageAlt: "Free Plan"},
|
||||
{
|
||||
id: "premium",
|
||||
title: "Premium",
|
||||
price: "$9.99",
|
||||
period: "per month",
|
||||
features: [
|
||||
"Unlimited Organized Notes",
|
||||
"5 To-Do Lists",
|
||||
"20 Study Plans",
|
||||
"Unlimited Revision Materials",
|
||||
"No Ads",
|
||||
],
|
||||
id: "premium", title: "Premium", price: "$9.99", period: "per month", features: [
|
||||
"Unlimited Organized Notes", "5 To-Do Lists", "20 Study Plans", "Unlimited Revision Materials", "No Ads"],
|
||||
button: {
|
||||
text: "Go Premium",
|
||||
href: "/account",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-credit-card-black-background_23-2148317907.jpg",
|
||||
imageAlt: "Premium Plan",
|
||||
},
|
||||
text: "Go Premium", href: "/account"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-credit-card-black-background_23-2148317907.jpg", imageAlt: "Premium Plan"},
|
||||
{
|
||||
id: "unlimited",
|
||||
title: "Unlimited",
|
||||
price: "$19.99",
|
||||
period: "per month",
|
||||
features: [
|
||||
"No Ads",
|
||||
"Unlimited Organized Notes",
|
||||
"Unlimited To-Do Lists",
|
||||
"Unlimited Revision Materials",
|
||||
"Unlimited Study Plans",
|
||||
],
|
||||
id: "unlimited", title: "Unlimited", price: "$19.99", period: "per month", features: [
|
||||
"No Ads", "Unlimited Organized Notes", "Unlimited To-Do Lists", "Unlimited Revision Materials", "Unlimited Study Plans"],
|
||||
button: {
|
||||
text: "Unlock Unlimited",
|
||||
href: "/account",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flay-lay-back-school-elements-with-clipboard-template_23-2148198132.jpg",
|
||||
imageAlt: "Unlimited Plan",
|
||||
},
|
||||
text: "Unlock Unlimited", href: "/account"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flay-lay-back-school-elements-with-clipboard-template_23-2148198132.jpg", imageAlt: "Unlimited Plan"},
|
||||
]}
|
||||
title="StudyBalance Plans"
|
||||
description="Choose the perfect plan to boost your academic performance. From free essentials to unlimited power, we have you covered."
|
||||
@@ -130,80 +82,53 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Organized Notes",
|
||||
description: "Keep all your study materials neatly categorized and easily accessible.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062193.jpg",
|
||||
imageAlt: "Organized Notes",
|
||||
},
|
||||
title: "Organized Notes", description: "Keep all your study materials neatly categorized and easily accessible.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/city-committed-education-collage-concept_23-2150062193.jpg", imageAlt: "Organized Notes"},
|
||||
items: [
|
||||
{
|
||||
icon: FolderKanban,
|
||||
text: "Categorize by subject",
|
||||
},
|
||||
text: "Categorize by subject"},
|
||||
{
|
||||
icon: Search,
|
||||
text: "Quick search functionality",
|
||||
},
|
||||
text: "Quick search functionality"},
|
||||
{
|
||||
icon: Share2,
|
||||
text: "Share with study groups",
|
||||
},
|
||||
text: "Share with study groups"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/education-business-logo-template-branding-design-vector-learning-institution-text_53876-151216.jpg?_wi=1",
|
||||
imageAlt: "study plan benefits illustration",
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "Effective To-Do Lists",
|
||||
description: "Manage your tasks and deadlines efficiently to stay on track with your studies.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-overloaded-bullet-journal_23-2150248156.jpg",
|
||||
imageAlt: "To-Do Lists",
|
||||
},
|
||||
title: "Effective To-Do Lists", description: "Manage your tasks and deadlines efficiently to stay on track with your studies.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/colorful-overloaded-bullet-journal_23-2150248156.jpg", imageAlt: "To-Do Lists"},
|
||||
items: [
|
||||
{
|
||||
icon: CheckSquare,
|
||||
text: "Track assignments",
|
||||
},
|
||||
text: "Track assignments"},
|
||||
{
|
||||
icon: Calendar,
|
||||
text: "Set due dates",
|
||||
},
|
||||
text: "Set due dates"},
|
||||
{
|
||||
icon: BellDot,
|
||||
text: "Receive reminders",
|
||||
},
|
||||
text: "Receive reminders"},
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/filing-taxes-smartphone_23-2151953952.jpg?_wi=2",
|
||||
imageAlt: "study plan benefits illustration",
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "Custom Study Plans",
|
||||
description: "Tailor your study schedules to fit your unique learning style and academic demands.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-network-concept-with-colorful-dots_23-2148999156.jpg",
|
||||
imageAlt: "Custom Study Plans",
|
||||
},
|
||||
title: "Custom Study Plans", description: "Tailor your study schedules to fit your unique learning style and academic demands.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-network-concept-with-colorful-dots_23-2148999156.jpg", imageAlt: "Custom Study Plans"},
|
||||
items: [
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Personalized curriculum",
|
||||
},
|
||||
text: "Personalized curriculum"},
|
||||
{
|
||||
icon: BarChart3,
|
||||
text: "Progress tracking",
|
||||
},
|
||||
text: "Progress tracking"},
|
||||
{
|
||||
icon: Award,
|
||||
text: "Achievement badges",
|
||||
},
|
||||
text: "Achievement badges"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/employee-putting-sticky-notes-laptop-screen-as-work-reminder-company-office-manager-using-adhesive-post-it-paper-display-remember-business-schedule-presentation-close-up_482257-33914.jpg?_wi=2",
|
||||
imageAlt: "study plan benefits illustration",
|
||||
},
|
||||
reverse: false
|
||||
}
|
||||
]}
|
||||
title="Benefits of a StudyBalance Plan"
|
||||
description="Discover how StudyBalance plans empower you to streamline your studies, boost productivity, and achieve better results."
|
||||
@@ -217,66 +142,39 @@ export default function LandingPage() {
|
||||
logoText="StudyBalance"
|
||||
columns={[
|
||||
{
|
||||
title: "Platform",
|
||||
items: [
|
||||
title: "Platform", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Plan",
|
||||
href: "/plan",
|
||||
},
|
||||
label: "Plan", href: "/plan"},
|
||||
{
|
||||
label: "Settings",
|
||||
href: "/settings",
|
||||
},
|
||||
label: "Settings", href: "/settings"},
|
||||
{
|
||||
label: "Account",
|
||||
href: "/account",
|
||||
},
|
||||
label: "Account", href: "/account"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Upload Materials",
|
||||
href: "/upload",
|
||||
},
|
||||
label: "Upload Materials", href: "/upload"},
|
||||
{
|
||||
label: "Educational Games",
|
||||
href: "/#about-games",
|
||||
},
|
||||
label: "Educational Games", href: "/#about-games"},
|
||||
{
|
||||
label: "Help & Support",
|
||||
href: "#",
|
||||
},
|
||||
label: "Help & Support", href: "#"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/#faq-general",
|
||||
},
|
||||
label: "FAQ", href: "/#faq-general"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
label: "About Us", href: "#"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
label: "Careers", href: "#"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user