10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import PricingSection from '@/components/PricingSection'
|
|
|
|
export default function PricingPage() {
|
|
return (
|
|
<div className="min-h-screen pt-20">
|
|
<PricingSection />
|
|
</div>
|
|
)
|
|
}
|