Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Relative Links in GHP #19

Merged
merged 3 commits into from
Dec 13, 2024
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 package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "hydra-app-ts",
"homepage": ".",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
3 changes: 1 addition & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
name="description"
content="Demo app for Hydra-Auction SDK"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />

<!-- <script type="module" src="dist/index.js"></script> -->
<!--
Expand All @@ -26,7 +25,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Hydra Auction Frontend</title>
<title>Hydra Auctions</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
20 changes: 10 additions & 10 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ export default function Footer() {
</p>
<div className="flex text-pink-600 gap-5 items-center">
<a href="https://ikigaitech.org" target="_blank" rel="noreferrer">
<img src="/images/ikigai-logo.png" alt="twitter" className='w-6 h-6'/>
<img src="./images/ikigai-logo.png" alt="twitter" className='w-6 h-6'/>
</a>
<a href="https://twitter.com/ikigai_tech" target="_blank" rel="noreferrer">
<img src="/images/twitter.png" alt="twitter" />
<img src="./images/twitter.png" alt="twitter" />
</a>
<a href="https://github.com/mlabs-haskell/hydra-auction-frontend" target="_blank" rel="noreferrer">
<img src="/images/github.png" alt="github - frontend code" />
<img src="./images/github.png" alt="github - frontend code" />
</a>
<a href="https://mlabs.city" target="_blank" rel="noreferrer">
<img src="/images/mlabs.png" alt="twitter" className='w-6 h-6'/>
<img src="./images/mlabs.png" alt="twitter" className='w-6 h-6'/>
</a>
<a href="https://twitter.com/MLabs10" target="_blank" rel="noreferrer">
<img src="/images/twitter.png" alt="twitter" className='w-6 h-6'/>
<img src="./images/twitter.png" alt="twitter" className='w-6 h-6'/>
</a>
<a href="https://github.com/mlabs-haskell/hydra-auction-onchain" target="_blank" rel="noreferrer">
<img src="/images/github.png" alt="github - onchain contracts" />
<img src="./images/github.png" alt="github - onchain contracts" />
</a>
<a href="https://github.com/mlabs-haskell/hydra-auction-offchain" target="_blank" rel="noreferrer">
<img src="/images/github.png" alt="github - offchain library" />
<img src="./images/github.png" alt="github - offchain library" />
</a>
</div>
<div className="flex ">
Expand All @@ -48,9 +48,9 @@ export default function Footer() {
</div>
<div className="h-full flex items-center">
<div className="text-white font-bold flex flex-col gap-8">
<a href="/">Terms</a>
<a href="/">Privacy Policy</a>
<a href="/">Contact Us</a>
<a href="./">Terms</a>
<a href="./">Privacy Policy</a>
<a href="./">Contact Us</a>
</div>
</div>
</footer>
Expand Down