shellphone.app/app/features/public-area/pages/index.tsx

18 lines
373 B
TypeScript
Raw Normal View History

2022-05-14 10:22:06 +00:00
import Header from "../components/header";
import Hero from "../components/hero";
2022-07-08 23:34:18 +00:00
import CallToAction from "../components/call-to-action";
import Faqs from "../components/faqs";
2022-05-14 10:22:06 +00:00
export default function IndexPage() {
return (
2022-07-08 23:34:18 +00:00
<section className="flex h-full flex-col">
<Header />
<main>
<Hero />
<CallToAction />
<Faqs />
</main>
2022-05-14 10:22:06 +00:00
</section>
);
}