Skip to content

Commit

Permalink
merge dev
Browse files Browse the repository at this point in the history
  • Loading branch information
SalmanAsh committed Sep 2, 2024
2 parents 9074bf5 + 3db39ca commit 85f0392
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
VITE_SERVICE_NAME=contributor
# Service.
VITE_SERVICE_NAME=contributor
5 changes: 0 additions & 5 deletions src/pages/home/Home.tsx
Original file line number Diff line number Diff line change
@@ -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 {}

Expand All @@ -19,9 +17,6 @@ const Home: FC<HomeProps> = () => {
This is an example of how you can create a web page. This example
consumes the backend-template&apos;s API.
</Typography>
<Link to={paths.contributors._}>Contributors list </Link>
<br></br>
<Link to={paths.login._}> Login with github</Link>
</pages.Section>
</pages.Page>
)
Expand Down
7 changes: 1 addition & 6 deletions src/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 85f0392

Please sign in to comment.