Skip to content

Commit

Permalink
feat: add author name
Browse files Browse the repository at this point in the history
  • Loading branch information
linhub15 committed Oct 24, 2024
1 parent 2ff94e2 commit d8de7ca
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
pull_request:
branches: main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
deploy:
name: Deploy
Expand Down
5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ Public data comes from City of Edmonton's open data portal.

### Ideas

- calculate tax rate on the property
- https://www.edmonton.ca/residential_neighbourhoods/property-taxes?utm_source=virtualaddress&utm_campaign=taxrates#stack135584
- show property type (residential ... etc)
- check out Fresh Charts: https://deno.land/x/[email protected]
- add map if it adds value
- add a logo + favicon
- add recently viewed addresses

1 change: 1 addition & 0 deletions src/routes/(_components)/top_nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export function TopNav() {
<nav class="max-w-screen-lg mx-auto flex flex-wrap items-center justify-between ">
<h1 class="self-center text-xl whitespace-nowrap dark:text-white">
<a href="/">Open Property</a>
<span class="text-sm px-4 font-medium">by Hubert Lin</span>
</h1>
<div class="flex flex-row gap-3 items-center">
<a
Expand Down
4 changes: 3 additions & 1 deletion src/routes/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ export default function App({ Component }: PageProps) {
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>open-property</title>
<meta type="description" content="Lookup Edmonton property assessment data" />
<link rel="stylesheet" href="/styles.css" />

<title>Open Property</title>
</head>
<body>
<Component />
Expand Down

0 comments on commit d8de7ca

Please sign in to comment.