Skip to content

Commit

Permalink
Added copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
AtLeastITry committed Jul 13, 2023
1 parent 68e05b3 commit 6efc187
Show file tree
Hide file tree
Showing 2 changed files with 188 additions and 76 deletions.
37 changes: 22 additions & 15 deletions src/components/footer.astro
Expand Up @@ -21,20 +21,27 @@ const links: Array<FooterLink> = [
];
---

<footer class="relative flex h-64 items-center justify-center">
<div class="flex justify-center ...">
{
links.map((link) => (
<div class="pl-2 pr-2">
<a
class="flex h-16 w-16 items-center justify-center rounded-full border-2 border-current p-4"
href={link.url}
>
<span class="sr-only">{link.description}</span>
<Icon class="h-full" name={link.icon} />
</a>
</div>
))
}
<footer>
<div class="relative flex h-64 items-center justify-center">
<div class="... flex justify-center">
{
links.map((link) => (
<div class="pl-2 pr-2">
<a
class="flex h-16 w-16 items-center justify-center rounded-full border-2 border-current p-4"
href={link.url}
>
<span class="sr-only">{link.description}</span>
<Icon class="h-full" name={link.icon} />
</a>
</div>
))
}
</div>
</div>
<div class="relative flex h-32 items-center justify-center">
<div class="... flex justify-center">
<p class="">© 2023 Haulage Innovations ltd</p>
</div>
</div>
</footer>

0 comments on commit 6efc187

Please sign in to comment.