Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
mhasanince committed Nov 8, 2023
1 parent b638e2a commit e9a7f2d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 6 deletions.
33 changes: 28 additions & 5 deletions src/components/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import { Image } from 'astro:assets';

<footer class="bg-black">
<div class="container flex flex-wrap gap-4 items-center justify-between py-5">
<Image src="/images/logo.svg" width={135} height={32} alt="Craftgate" />
<a href="/">
<Image src="/images/logo.svg" width={135} height={32} alt="Craftgate" />
</a>
<nav>
<ul class="flex gap-4 text-sm">
<li class="flex gap-1.5 items-center">
Expand All @@ -14,7 +16,13 @@ import { Image } from 'astro:assets';
height={16}
alt="Craftgate Github"
/>
<a href="https://github.com/craftgate">Github</a>
<a
href="https://github.com/craftgate"
target="_blank"
rel="noopener noreferrer"
>
Github
</a>
</li>
<li class="flex gap-1.5 items-center">
<Image
Expand All @@ -23,7 +31,12 @@ import { Image } from 'astro:assets';
height={16}
alt="Craftgate Twitter"
/>
<a href="https://twitter.com/craftgateio">Twitter</a>
<a
href="https://twitter.com/craftgateio"
target="_blank"
rel="noopener noreferrer"
>Twitter
</a>
</li>
<li class="flex gap-1.5 items-center">
<Image
Expand All @@ -32,7 +45,12 @@ import { Image } from 'astro:assets';
height={16}
alt="Craftgate Linkedin"
/>
<a href="https://www.linkedin.com/company/craftgate">Linkedin</a>
<a
href="https://www.linkedin.com/company/craftgate"
target="_blank"
rel="noopener noreferrer"
>Linkedin
</a>
</li>
<li class="flex gap-1.5 items-center">
<Image
Expand All @@ -41,7 +59,12 @@ import { Image } from 'astro:assets';
height={16}
alt="Craftgate Instagram"
/>
<a href="https://www.instagram.com/craftgateio">Instagram</a>
<a
href="https://www.instagram.com/craftgateio"
target="_blank"
rel="noopener noreferrer"
>Instagram
</a>
</li>
</ul>
</nav>
Expand Down
4 changes: 3 additions & 1 deletion src/components/header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import { Image } from 'astro:assets';
<header
class="container flex flex-wrap gap-4 items-center justify-between py-5"
>
<Image src="/images/logo.svg" width={135} height={32} alt="Craftgate" />
<a href="/">
<Image src="/images/logo.svg" width={135} height={32} alt="Craftgate" />
</a>
<nav>
<ul class="flex gap-8 font-medium">
<li>
Expand Down

0 comments on commit e9a7f2d

Please sign in to comment.