-
Notifications
You must be signed in to change notification settings - Fork 0
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
6c75e02
commit a6a5363
Showing
15 changed files
with
121 additions
and
98 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,68 @@ | ||
--- | ||
import { Icon } from "astro-icon/components"; | ||
import ThemeToggle from "./ThemeToggle.astro"; | ||
import Updated from "./Updated.astro"; | ||
--- | ||
|
||
<footer | ||
data-testid="footer" | ||
class="mt-auto flex flex-col items-center gap-2 pb-8 pt-10" | ||
> | ||
<div class="flex items-center justify-center gap-6"> | ||
<a href="mailto:[email protected]" title="My email" aria-label="Email"> | ||
<Icon name="mail" class="h-[26px] w-[26px]" /> | ||
</a> | ||
|
||
<a | ||
href="https://www.linkedin.com/in/anguyennz/" | ||
target="_blank" | ||
rel="noopener" | ||
title="My LinkedIn" | ||
aria-label="LinkedIn" | ||
> | ||
<Icon name="linkedin" class="h-[24px] w-[24px]" /> | ||
</a> | ||
|
||
<a | ||
href="https://twitter.com/anguyendev" | ||
target="_blank" | ||
rel="noopener" | ||
title="My X or Twitter" | ||
aria-label="X or Twitter" | ||
> | ||
<Icon name="x" class="h-[24px] w-[24px]" /> | ||
</a> | ||
|
||
<a | ||
href="https://github.com/alexnguyennz" | ||
target="_blank" | ||
rel="noopener" | ||
title="My GitHub" | ||
aria-label="GitHub" | ||
> | ||
<Icon name="github" class="h-[24px] w-[24px] dark:hidden" /> | ||
<Icon name="github-dark" class="hidden h-[24px] w-[24px] dark:block" /> | ||
</a> | ||
</div> | ||
<footer data-testid="footer" class="mb-10 mt-auto gap-2 text-sm"> | ||
<div class="mx-auto max-w-2xl space-y-4"> | ||
<hr class="mb-6 mt-10 border-t border-slate-300" /> | ||
<div class="flex items-center justify-between"> | ||
<p>© 2023 Alex Nguyen</p> | ||
|
||
<div class="flex items-center justify-center gap-4"> | ||
<a | ||
href="mailto:[email protected]" | ||
title="My email" | ||
aria-label="Email" | ||
> | ||
<Icon name="mail" class="h-[26px] w-[26px]" /> | ||
</a> | ||
|
||
<a | ||
href="https://www.linkedin.com/in/anguyennz/" | ||
target="_blank" | ||
rel="noopener" | ||
title="My LinkedIn" | ||
aria-label="LinkedIn" | ||
> | ||
<Icon name="linkedin" class="h-[24px] w-[24px]" /> | ||
</a> | ||
|
||
<a | ||
href="https://twitter.com/anguyendev" | ||
target="_blank" | ||
rel="noopener" | ||
title="My X or Twitter" | ||
aria-label="X or Twitter" | ||
> | ||
<Icon name="x" class="h-[24px] w-[24px]" /> | ||
</a> | ||
|
||
<Updated /> | ||
<a | ||
href="https://github.com/alexnguyennz" | ||
target="_blank" | ||
rel="noopener" | ||
title="My GitHub" | ||
aria-label="GitHub" | ||
> | ||
<Icon name="github" class="h-[24px] w-[24px] dark:hidden" /> | ||
<Icon | ||
name="github-dark" | ||
class="hidden h-[24px] w-[24px] dark:block" | ||
/> | ||
</a> | ||
|
||
<a href="/rss.xml" title="My RSS feed" aria-label="RSS"> | ||
<Icon name="lucide:rss" class="h-[24px] w-[24px]" /> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div class="flex items-center justify-between"> | ||
<Updated /> | ||
<ThemeToggle /> | ||
</div> | ||
</div> | ||
</footer> |
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
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
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
Oops, something went wrong.