reafactor: converted the entire thing into a nextjs app
This commit is contained in:
17
app/page.tsx
Normal file
17
app/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import Hero from '@/components/Hero';
|
||||
import Features from '@/components/Features';
|
||||
import HowItWorks from '@/components/HowItWorks';
|
||||
import CallToAction from '@/components/CallToAction';
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<main>
|
||||
<Hero />
|
||||
<Features />
|
||||
<HowItWorks />
|
||||
<CallToAction />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user