Update src/app/pricing/page.tsx

This commit is contained in:
2026-05-13 11:26:14 +00:00
parent 3cf02f67aa
commit 077d1276ba

View File

@@ -8,16 +8,16 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
export default function PricingPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="bounce-effect" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="GourmetAgency"
navItems={[
{ name: "Home", id: "/" },
{ name: "Pricing", id: "pricing" },
{ name: "Enroll", id: "/enrollment" },
{ name: "Contact", id: "/" }
{ name: "Courses", id: "/courses" },
{ name: "Pricing", id: "/pricing" },
{ name: "Enrollment", id: "/enrollment" }
]}
/>
</div>
@@ -27,9 +27,10 @@ export default function PricingPage() {
description="Choose the perfect path for your hospitality career advancement."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
plans={[
{ id: "starter", price: "$299", name: "Essential Course", features: ["Access to basic modules", "Community support", "PDF resources"], buttons: [{ text: "Select Plan", href: "/enrollment" }] },
{ id: "pro", badge: "Most Popular", price: "$599", name: "Professional Certification", features: ["Everything in Starter", "1-on-1 Mentorship", "Certification Exam", "Lifetime access"], buttons: [{ text: "Select Plan", href: "/enrollment" }] }
{ id: "pro", price: "$599", name: "Professional Certification", features: ["Everything in Starter", "1-on-1 Mentorship", "Certification Exam", "Lifetime access"], buttons: [{ text: "Select Plan", href: "/enrollment" }] }
]}
/>
</div>