diff --git a/.env b/.env index aa918e6..d1fe7b9 100644 --- a/.env +++ b/.env @@ -1 +1,2 @@ -VITE_SERVICE_NAME=contributor \ No newline at end of file +# Service. +VITE_SERVICE_NAME=contributor diff --git a/src/pages/home/Home.tsx b/src/pages/home/Home.tsx index ab0c687..0ec0568 100644 --- a/src/pages/home/Home.tsx +++ b/src/pages/home/Home.tsx @@ -1,11 +1,9 @@ import * as pages from "codeforlife/components/page" import { type FC } from "react" import { Image } from "codeforlife/components" -import { Link } from "codeforlife/components/router" import { Typography } from "@mui/material" import CflLogoImage from "../../images/cfl_logo.png" -import { paths } from "../../routes" export interface HomeProps {} @@ -19,9 +17,6 @@ const Home: FC = () => { This is an example of how you can create a web page. This example consumes the backend-template's API. - Contributors list -

- Login with github ) diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 0de60bb..70e1008 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -1,17 +1,12 @@ import agreementSignature from "./agreementSignature" -import contributor from "./contributor" import general from "./general" -import login from "./login" -import paths from "./paths" const routes = ( <> {general} - {contributor} {agreementSignature} - {login} ) export default routes -export { paths } +export { default as paths } from "./paths"