Update src/app/pricing/page.tsx
This commit is contained in:
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Sparkles } from "lucide-react";
|
||||
import { Sparkles, Zap, Award } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function PricingPage() {
|
||||
@@ -18,8 +18,7 @@ export default function PricingPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "#features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "How It Works", href: "#how-it-works" },
|
||||
@@ -27,8 +26,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "/careers" },
|
||||
@@ -36,8 +34,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{ label: "CBSE Updates", href: "/cbse-updates" },
|
||||
{ label: "Study Tips", href: "/study-tips" },
|
||||
{ label: "Exam Calendar", href: "/exam-calendar" },
|
||||
@@ -45,8 +42,7 @@ export default function PricingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
{ label: "Refund Policy", href: "/refund" },
|
||||
@@ -73,9 +69,7 @@ export default function PricingPage() {
|
||||
navItems={navItems}
|
||||
brandName="Revise"
|
||||
button={{
|
||||
text: "Start Free Trial",
|
||||
href: "https://app.revise.com/signup",
|
||||
}}
|
||||
text: "Start Free Trial", href: "https://app.revise.com/signup"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -91,50 +85,19 @@ export default function PricingPage() {
|
||||
containerClassName="w-full"
|
||||
plans={[
|
||||
{
|
||||
id: "starter",
|
||||
badge: "Quick Prep",
|
||||
badgeIcon: "Zap",
|
||||
price: "₹299",
|
||||
subtitle: "Perfect for last-minute revision (3-8 weeks)",
|
||||
features: [
|
||||
"Upload up to 3 subjects",
|
||||
"Exam-focused notes extraction",
|
||||
"100 AI-generated MCQs per subject",
|
||||
"Basic performance analytics",
|
||||
"7-day access to all features",
|
||||
],
|
||||
id: "starter", badge: "Quick Prep", badgeIcon: Zap,
|
||||
price: "₹299", subtitle: "Perfect for last-minute revision (3-8 weeks)", features: [
|
||||
"Upload up to 3 subjects", "Exam-focused notes extraction", "100 AI-generated MCQs per subject", "Basic performance analytics", "7-day access to all features"],
|
||||
},
|
||||
{
|
||||
id: "standard",
|
||||
badge: "Most Popular",
|
||||
badgeIcon: "Sparkles",
|
||||
price: "₹699",
|
||||
subtitle: "Best for balanced preparation (2-4 months)",
|
||||
features: [
|
||||
"Unlimited subject uploads",
|
||||
"Frequency-ranked concept priority",
|
||||
"500+ AI-generated MCQs",
|
||||
"Predictive question forecasting",
|
||||
"Personalized exam-date timeline",
|
||||
"Detailed weak-area analytics",
|
||||
"30-day access to all features",
|
||||
],
|
||||
id: "standard", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "₹699", subtitle: "Best for balanced preparation (2-4 months)", features: [
|
||||
"Unlimited subject uploads", "Frequency-ranked concept priority", "500+ AI-generated MCQs", "Predictive question forecasting", "Personalized exam-date timeline", "Detailed weak-area analytics", "30-day access to all features"],
|
||||
},
|
||||
{
|
||||
id: "intensive",
|
||||
badge: "Board Ready",
|
||||
badgeIcon: "Award",
|
||||
price: "₹1,299",
|
||||
subtitle: "Complete exam mastery (4+ months)",
|
||||
features: [
|
||||
"Everything in Standard plan",
|
||||
"Unlimited MCQ generation",
|
||||
"Priority concept explanations",
|
||||
"Bi-weekly performance reports",
|
||||
"Subject-wise strength tracking",
|
||||
"Exam simulation practice tests",
|
||||
"90-day access with renewal option",
|
||||
],
|
||||
id: "intensive", badge: "Board Ready", badgeIcon: Award,
|
||||
price: "₹1,299", subtitle: "Complete exam mastery (4+ months)", features: [
|
||||
"Everything in Standard plan", "Unlimited MCQ generation", "Priority concept explanations", "Bi-weekly performance reports", "Subject-wise strength tracking", "Exam simulation practice tests", "90-day access with renewal option"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user