22 lines
540 B
TypeScript
22 lines
540 B
TypeScript
import Navbar from '@/components/Navbar/Navbar';
|
|
import Hero from '@/components/Hero/Hero';
|
|
import Features from '@/components/Features/Features';
|
|
import Pricing from '@/components/Pricing/Pricing';
|
|
import ContactForm from '@/components/ContactForm/ContactForm';
|
|
import Footer from '@/components/Footer/Footer';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main id="main-content">
|
|
<Hero />
|
|
<Features />
|
|
<Pricing />
|
|
<ContactForm />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|