You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
766 B
19 lines
766 B
<script setup>
|
|
import LinkedinLogo from './../assets/icons/linkedin.svg';
|
|
import GithubLogo from './../assets/icons/github.svg';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col justify-center items-center bg-grey-400 text-white pt-40 pb-8 px-12 sm:px-64">
|
|
<div class="flex flex-row justify-center items-center gap-2 py-4">
|
|
<a href="//www.linkedin.com/in/lucas-delanier" target="_blank" rel="noopener">
|
|
<LinkedinLogo class="w-8 h-8 text-gray-500"/>
|
|
</a>
|
|
<a href="//github.com/WINK3R" target="_blank" rel="noopener">
|
|
<GithubLogo class="w-8 h-8 text-gray-500"/>
|
|
</a>
|
|
</div>
|
|
<hr class="w-full border-grey-300">
|
|
<p class="text-gray-500 pt-6">© 2024 Delanier Lucas</p>
|
|
</div>
|
|
</template> |