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