mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-15 00:51:53 +02:00
First public commit
This commit is contained in:
commit
e05cd62e53
228 changed files with 17717 additions and 0 deletions
25
components/home/home.tsx
Normal file
25
components/home/home.tsx
Normal file
|
@ -0,0 +1,25 @@
|
|||
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 />
|
||||
<div className="bg-gradient-to-b from-transparent via-white to-white">
|
||||
<Features />
|
||||
</div>
|
||||
<div className="bg-gradient-to-b from-white via-white to-transparent pb-16">
|
||||
<Bonus />
|
||||
</div>
|
||||
</PageLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home;
|
Loading…
Add table
Add a link
Reference in a new issue