Update meta description on home page

This commit is contained in:
Luke Vella 2022-04-16 09:20:03 +01:00
parent ec97673546
commit cb8b94362e
2 changed files with 8 additions and 5 deletions

View file

@ -1,21 +0,0 @@
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;

View file

@ -1 +0,0 @@
export { default } from './home';