From cb8b94362ea5d9ffef80a74ac80075234e6fe697 Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Sat, 16 Apr 2022 09:20:03 +0100 Subject: [PATCH] Update meta description on home page --- components/{home => }/home.tsx | 12 ++++++++---- components/home/index.ts | 1 - 2 files changed, 8 insertions(+), 5 deletions(-) rename components/{home => }/home.tsx (51%) delete mode 100644 components/home/index.ts diff --git a/components/home/home.tsx b/components/home.tsx similarity index 51% rename from components/home/home.tsx rename to components/home.tsx index 7a512c339..c1dfee0f5 100644 --- a/components/home/home.tsx +++ b/components/home.tsx @@ -1,14 +1,18 @@ 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"; +import PageLayout from "./page-layout"; +import Bonus from "./home/bonus"; +import Features from "./home/features"; +import Hero from "./home/hero"; const Home: React.VoidFunctionComponent = () => { return ( + Rallly - Schedule group meetings diff --git a/components/home/index.ts b/components/home/index.ts deleted file mode 100644 index 2fdb14756..000000000 --- a/components/home/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from './home';