-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31bb4fd
commit 41d9e9f
Showing
8 changed files
with
101 additions
and
140 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
--- | ||
import FooterLink from "./FooterLink.astro"; | ||
import { | ||
GithubLogo, | ||
LinkedInLogo, | ||
BlogLogo, | ||
ContactLogo, | ||
HomeLogo, | ||
PersonalLogo, | ||
PortfolioLogo, | ||
} from "./Logos/index.astro"; | ||
--- | ||
|
||
<footer | ||
|
@@ -9,17 +18,25 @@ import FooterLink from "./FooterLink.astro"; | |
class="bg-primary rounded-2xl flex items-center px-3 lg:px-4 py-4 lg:py-6" | ||
> | ||
<ul class="flex"> | ||
<FooterLink label="Home" href="/" /> | ||
<FooterLink label="Personal" href="/personal" /> | ||
<FooterLink label="Portfolio" href="/portfolio" /> | ||
<FooterLink label="Blog" href="/blog" /> | ||
<FooterLink label="Home" href="/"><HomeLogo /></FooterLink> | ||
<FooterLink label="Personal" href="/personal"><PersonalLogo /></FooterLink | ||
> | ||
<FooterLink label="Portfolio" href="/portfolio" | ||
><PortfolioLogo /></FooterLink | ||
> | ||
<FooterLink label="Blog" href="/blog"><BlogLogo /></FooterLink> | ||
<li class="bg-secondary h-[1.82rem] w-[2px] mx-2"></li> | ||
<FooterLink label="Contact" href="mailto:[email protected]" /> | ||
<FooterLink label="Contact" href="mailto:[email protected]" | ||
><ContactLogo /></FooterLink | ||
> | ||
<FooterLink | ||
label="LinkedIn" | ||
href="https://www.linkedin.com/in/thomasledoux91" | ||
/> | ||
<FooterLink label="GitHub" href="https://github.com/thomasledoux1" /> | ||
><LinkedInLogo /></FooterLink | ||
> | ||
<FooterLink label="GitHub" href="https://github.com/thomasledoux1" | ||
><GithubLogo /></FooterLink | ||
> | ||
</ul> | ||
</nav> | ||
</footer> |
Oops, something went wrong.