Skip to content

Commit

Permalink
Added project and venue information to the homepage.
Browse files Browse the repository at this point in the history
  • Loading branch information
anilnatha committed Sep 24, 2024
1 parent 70e2299 commit 206b0e9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/routes/home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { DocumentMeta } from "../../components/DocumentMeta/DocumentMeta"
import Config from "../../Config";

function Home() {

const project = Config['general']['project'];
const venue = Config['general']['venue'];

return (
<>
<DocumentMeta
Expand All @@ -10,6 +14,8 @@ function Home() {
/>
<div className="main-view">
<h1>Home</h1>
<div>Project: <strong>{project}</strong></div>
<div>Venue: <strong>{venue}</strong></div>
</div>
</>
)
Expand Down

0 comments on commit 206b0e9

Please sign in to comment.