-
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.
build sitemap and use iconify svelte
- Loading branch information
1 parent
068f038
commit f22414c
Showing
4 changed files
with
15 additions
and
11 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
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,6 +1,6 @@ | ||
<script lang="ts"> | ||
import Image from "../components/Image.svelte"; | ||
import "iconify-icon"; | ||
import Icon from '@iconify/svelte'; | ||
</script> | ||
|
||
<svelte:head> | ||
|
@@ -74,14 +74,14 @@ | |
> | ||
<div class="flex flex-row justify-around flex-grow"> | ||
<div class="flex items-center mx-4"> | ||
<iconify-icon class="text-red-400" icon="mdi:email" /> | ||
<Icon class="text-red-400" icon="mdi:email" /> | ||
<a href="mailto:[email protected]" class="ml-2"> | ||
candrewlee14 | ||
</a> | ||
</div> | ||
<div class="flex items-center mx-4"> | ||
<!-- <FaGithub class="text-black dark:text-white" /> --> | ||
<iconify-icon | ||
<Icon | ||
class="text-black dark:text-white" | ||
icon="mdi:github" | ||
/> | ||
|
@@ -92,17 +92,17 @@ | |
</div> | ||
<div class="flex flex-row justify-around flex-grow"> | ||
<div class="flex items-center mx-4"> | ||
<iconify-icon | ||
class="text-black dark:text-white" | ||
<Icon | ||
class="text-blue-400" | ||
icon="mdi:twitter" | ||
/> | ||
<a href="https://twitter.com/c_andrew_lee" class="ml-2"> | ||
c_andrew_lee | ||
</a> | ||
</div> | ||
<div class="flex items-center mx-4"> | ||
<iconify-icon | ||
class="text-black dark:text-white" | ||
<Icon | ||
class="text-sky-500 dark:text-sky-400" | ||
icon="mdi:linkedin" | ||
/> | ||
<a | ||
|