Skip to content

Commit

Permalink
Merge pull request #19 from mlabs-haskell/sam/fix-relative-links
Browse files Browse the repository at this point in the history
Fix Relative Links in GHP
  • Loading branch information
SamDelaney authored Dec 13, 2024
2 parents 11e904b + bd11fbf commit ac2f4af
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
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

0 comments on commit ac2f4af

Please sign in to comment.