pricing.tsx
pricing-one.tsx
price-slider.tsx
import PricingOne from "@/components/pricing-one";
export default function Page() {
return <PricingOne />;
}
pricing.tsx
pricing-two.tsx
import PricingTwo from "@/components/pricing-two";
export default function Page() {
return <PricingTwo />;
}
pricing.tsx
pricing-three.tsx
import PricingThree from "@/components/pricing-three";
export default function Page() {
const plans = [
{
name: "Free",
price: 0,
description: "Great for trying out 10 days free.",
buttonText: "Download for Free",
popular: false,
features: [
"Free Trial",
"Automatic Album Designing",
"Image Editing With Live Ready To Use Content",
"Millions of Designing",
],
},
{
name: "Professional",
price: 199,
description: "Best for Design And Ready to use",
buttonText: "Buy Now",
popular: true,
features: [
"12 Month Subscription",
"Automatic Album Designing",
"Image Editing With Live Ready To Use Content",
"Millions of Designing",
],
},
{
name: "Enterprise",
price: 2999,
description: "Best for large album",
buttonText: "Buy Now",
popular: false,
features: [
"36 Month Subscription",
"Automatic Album Designing",
"Image Editing With Live Ready To Use Content",
"Millions of Designing",
],
},
];
return <PricingThree plans={plans} />;
}
pricing.tsx
pricing-four.tsx
import PricingFour from "@/components/pricing-four";
export default function Page() {
return <PricingFour />;
}