ComponentsPricing
A pricing section with ability to feature a plan. Just add a plan to your /config.ts
file to show more.
/app/page.tsx
1import Pricing from "@/components/Pricing";
2
3export default function Home() {
4 return (
5 <>
6 <main>
7 <Pricing />
8 </main>
9 </>
10 );
11}
Tips
- Good, Better, Best is a good pricing strategy. Read more here.