| 1 |
import HeroSection from './components/HeroSection'; |
| 2 |
import PricingSection from './components/PricingSection'; |
| 3 |
import ComparisonSection from './components/ComparisonSection'; |
| 4 |
import WhyUpgradeSection from './components/WhyUpgradeSection'; |
| 5 |
import TestimonialsSection from './components/TestimonialsSection'; |
| 6 |
import CTAFooter from './components/CTAFooter'; |
| 7 |
|
| 8 |
export default function DiscoPricingPage() { |
| 9 |
return ( |
| 10 |
<div className="disco:min-h-screen disco:bg-white disco:font-sans disco:my-4 disco:mr-4 disco:p-5 disco:rounded-2xl"> |
| 11 |
<HeroSection /> |
| 12 |
<PricingSection /> |
| 13 |
<ComparisonSection /> |
| 14 |
<WhyUpgradeSection /> |
| 15 |
<TestimonialsSection /> |
| 16 |
<CTAFooter /> |
| 17 |
</div> |
| 18 |
); |
| 19 |
} |
| 20 |
|