From 9335e032d0ee7f80da8526277d6d796d5481024d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:12:01 +0000 Subject: [PATCH] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 55 ++++++++-------------------------------- 1 file changed, 10 insertions(+), 45 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index c597fce..fed2ef7 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -6,7 +6,7 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import ContactText from "@/components/sections/contact/ContactText"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { DollarSign, Sparkles, Zap } from "lucide-react"; +import { DollarSign, Sparkles, Zap, Star } from "lucide-react"; export default function PricingPage() { const navItems = [ @@ -48,57 +48,22 @@ export default function PricingPage() { tagAnimation="slide-up" plans={[ { - id: "free", - badge: "Most Popular", - badgeIcon: "Star", - price: "₹0", - subtitle: "Perfect for casual job seekers", - buttons: [{ text: "Start Searching", href: "/" }], + id: "free", badge: "Most Popular", badgeIcon: Star, + price: "₹0", subtitle: "Perfect for casual job seekers", buttons: [{ text: "Start Searching", href: "/" }], features: [ - "Search across all platforms", - "Basic filters (title, location, experience)", - "View up to 50 job results per search", - "Direct apply links", - "1 saved search", - "Email alerts (basic)", - ], + "Search across all platforms", "Basic filters (title, location, experience)", "View up to 50 job results per search", "Direct apply links", "1 saved search", "Email alerts (basic)"], }, { - id: "pro", - badge: "Recommended", - badgeIcon: "Sparkles", - price: "₹299", - subtitle: "Best for active job hunters", - buttons: [{ text: "Subscribe Now", href: "#signup" }], + id: "pro", badge: "Recommended", badgeIcon: Sparkles, + price: "₹299", subtitle: "Best for active job hunters", buttons: [{ text: "Subscribe Now", href: "#signup" }], features: [ - "Unlimited search results", - "Advanced filters (salary, company, skills)", - "Unlimited saved searches", - "Priority email alerts", - "Job match scoring", - "Application tracking dashboard", - "Resume optimization tips", - "Interview prep resources", - "30-day money-back guarantee", - ], + "Unlimited search results", "Advanced filters (salary, company, skills)", "Unlimited saved searches", "Priority email alerts", "Job match scoring", "Application tracking dashboard", "Resume optimization tips", "Interview prep resources", "30-day money-back guarantee"], }, { - id: "enterprise", - badge: "Custom", - badgeIcon: "Zap", - price: "Custom", - subtitle: "For recruitment teams & enterprises", - buttons: [{ text: "Contact Sales", href: "/contact" }], + id: "enterprise", badge: "Custom", badgeIcon: Zap, + price: "Custom", subtitle: "For recruitment teams & enterprises", buttons: [{ text: "Contact Sales", href: "/contact" }], features: [ - "White-label job aggregation API", - "Bulk candidate search", - "Custom integration support", - "Advanced analytics dashboard", - "Dedicated account manager", - "Priority support 24/7", - "Custom branding options", - "Volume discounts available", - ], + "White-label job aggregation API", "Bulk candidate search", "Custom integration support", "Advanced analytics dashboard", "Dedicated account manager", "Priority support 24/7", "Custom branding options", "Volume discounts available"], }, ]} animationType="slide-up" -- 2.49.1