Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="apple-itunes-app" content="app-id=6741091962">
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Surcharges</title>
Expand Down
1 change: 1 addition & 0 deletions public/app-ads.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google.com, pub-2719055739020811, DIRECT, f08c47fec0942fa0
15 changes: 10 additions & 5 deletions src/6_shared/ui/footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
import { Bonsung } from './bonsung/Bonsung'
import { Petr } from './petr/Petr'
import { Link } from "react-router-dom"
import { Bonsung } from "./bonsung/Bonsung"
import { Petr } from "./petr/Petr"
import appstore from "@assets/images/appstore.svg"

export function Footer() {
return (
<div className='mt-10 mb-10'>
<footer className='flex flex-col items-center justify-center'>
<div className="mt-10 mb-10">
<footer className="flex flex-col items-center justify-center">
<p>Made with ❤️ in Wellington</p>
<Bonsung />
<Petr />
<div className='mt-10'>
<div className="mt-10">
<p>v{__APP_VERSION__}({__GIT_COMMIT_HASH__})</p>
</div>
<div className="mt-10">
<Link to="https://apps.apple.com/app/surcharges/id6741091962"><img src={appstore} alt="Surcharges iOS App" /></Link>
</div>
</footer>
</div>
)
Expand Down
46 changes: 46 additions & 0 deletions src/assets/images/appstore.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@features/*": ["src/4_features/*"],
"@entities/*": ["src/5_entities/*"],
"@shared/*": ["src/6_shared/*"],
"@assets/*": ["src/assets/*"],
}
},
"include": ["src"]
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default defineConfig({
'@features': path.resolve(__dirname, 'src/4_features'),
'@entities': path.resolve(__dirname, 'src/5_entities'),
'@shared': path.resolve(__dirname, 'src/6_shared'),
'@assets': path.resolve(__dirname, 'src/assets'),
},
}
})
Loading