Initial commit
This commit is contained in:
17
app/page.tsx
Normal file
17
app/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import Hero from "../components/Hero";
|
||||
import WhyWithUs from "../components/WhyWithUs";
|
||||
import UpcomingWebinars from "../components/UpcomingWebinars";
|
||||
import Testimonials from "../components/Testimonials";
|
||||
import CTA from "../components/CTA";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<main>
|
||||
<Hero />
|
||||
<WhyWithUs />
|
||||
<UpcomingWebinars />
|
||||
<Testimonials />
|
||||
<CTA />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user