mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-01 03:06:32 +02:00
26 lines
620 B
TypeScript
26 lines
620 B
TypeScript
import Head from "next/head";
|
|
import React from "react";
|
|
|
|
import Bonus from "./home/bonus";
|
|
import Features from "./home/features";
|
|
import Hero from "./home/hero";
|
|
import PageLayout from "./page-layout";
|
|
|
|
const Home: React.VoidFunctionComponent = () => {
|
|
return (
|
|
<PageLayout>
|
|
<Head>
|
|
<meta
|
|
name="description"
|
|
content="Create polls and vote to find the best day or time. A free alternative to Doodle."
|
|
/>
|
|
<title>Rallly - Schedule group meetings</title>
|
|
</Head>
|
|
<Hero />
|
|
<Features />
|
|
<Bonus />
|
|
</PageLayout>
|
|
);
|
|
};
|
|
|
|
export default Home;
|