mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-07 05:01:49 +02:00
21 lines
449 B
TypeScript
21 lines
449 B
TypeScript
import Head from "next/head";
|
|
import React from "react";
|
|
import PageLayout from "../page-layout";
|
|
import Bonus from "./bonus";
|
|
import Features from "./features";
|
|
import Hero from "./hero";
|
|
|
|
const Home: React.VoidFunctionComponent = () => {
|
|
return (
|
|
<PageLayout>
|
|
<Head>
|
|
<title>Rallly - Schedule group meetings</title>
|
|
</Head>
|
|
<Hero />
|
|
<Features />
|
|
<Bonus />
|
|
</PageLayout>
|
|
);
|
|
};
|
|
|
|
export default Home;
|