15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
|
|
import Navbar from '../components/Navbar';
|
||
|
|
import Pricing from '../components/Pricing';
|
||
|
|
import Footer from '../components/Footer';
|
||
|
|
|
||
|
|
export default function PricingPage() {
|
||
|
|
return (
|
||
|
|
<div className="pt-16 bg-background">
|
||
|
|
<Navbar />
|
||
|
|
<main>
|
||
|
|
<Pricing />
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|