PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.4.14
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.4.14
1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 1.3.47 1.3.46 1.3.45 All 177 releases
disco / backend / views / components / ProPlan / App.jsx

App.jsx in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.4.14, at backend/views/components/ProPlan/App.jsx

20 lines 680 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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