moll.re/frontend/src/pages/landing.tsx
Remy Moll 3f1c8cb6aa
Some checks failed
Build and docker image / Build (pull_request) Failing after 14s
basic structure and a bit of content
2024-05-13 18:19:15 +02:00

21 lines
532 B
TypeScript

import * as elements from "typed-html";
import { Timeline } from "../components/timeline";
import { Navigation } from "../components/navigation";
import { Hero } from "../components/hero";
import { Footer } from "../components/footer";
const LandingPage = ({ content }: Dict) => {
return (
<div class={'w-full h-full'}>
<Hero />
<Navigation />
<Timeline {content['timeline_items']}/>
<Footer {content['footer_links']}/>
</div>
);
};
export { LandingPage }