diff --git a/apps/frontend/.gitignore b/apps/frontend/.gitignore index 7b8da95..1759712 100644 --- a/apps/frontend/.gitignore +++ b/apps/frontend/.gitignore @@ -40,3 +40,6 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +# clerk configuration (can include secrets) +/.clerk/ diff --git a/apps/frontend/src/app/(marketing)/pricing/page.tsx b/apps/frontend/src/app/(marketing)/pricing/page.tsx index a271333..d2546e6 100644 --- a/apps/frontend/src/app/(marketing)/pricing/page.tsx +++ b/apps/frontend/src/app/(marketing)/pricing/page.tsx @@ -5,7 +5,6 @@ import React from 'react'; import { createMetadata } from '@/utils/metadata'; import type { Metadata } from 'next'; -import { UnderConstruction } from '@/components/under-construction'; export const metadata: Metadata = createMetadata({ title: 'Pricing | Graphical Playground', @@ -15,8 +14,179 @@ export const metadata: Metadata = createMetadata({ export default function PricingPage() { return ( -
- -
+
+
+

+ Simple pricing for everyone +

+ +

+ Learn for free as an individual, or equip your school or company with + powerful learning tools, analytics and certification management. +

+
+ +
+ {/* Individual */} +
+

Individual

+ +
+ Free +
+ +

+ Perfect for students and hobbyists. +

+ +
    +
  • ✓ Unlimited access to public curriculum
  • +
  • ✓ Personal dashboard
  • +
  • ✓ Track your progress
  • +
  • ✓ Community support
  • +
  • ✓ Access to the editor
  • +
+ + +
+ + {/* School */} +
+ + Most Popular + + +

School

+ +
+ €199 + / month +
+ +

+ For classrooms and educational institutions. +

+ +
    +
  • ✓ Up to 100 students
  • +
  • ✓ Teacher dashboard
  • +
  • ✓ Student management
  • +
  • ✓ Classroom analytics
  • +
  • ✓ Private curricula
  • +
  • ✓ Certification management
  • +
+ + +
+ + {/* Company */} +
+

Company

+ +
+ €999 + / month +
+ +

+ Upskill your engineering teams. +

+ +
    +
  • ✓ Up to 250 employees
  • +
  • ✓ Team management
  • +
  • ✓ Learning analytics
  • +
  • ✓ Custom learning paths
  • +
  • ✓ API access
  • +
  • ✓ Priority support
  • +
+ + +
+
+ +
+
+

+ Official Certification Credits +

+ +

+ Learning is free. Official certifications require certification + credits that can be purchased separately. +

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CreditsPriceRecommended for
5€25Individuals
25€100Small teams
100€350Schools
500€1500Enterprises
+
+ +

+ One credit grants one certification attempt. Credits never expire and + can be assigned to any learner in your organization. +

+
+ +
+

+ Ready to start learning? +

+ +

+ Join Graphical Playground today and build the next generation of + graphics engineers. +

+ +
+ + + +
+
+
); -} +} \ No newline at end of file