shillerben-nuxt/app.vue
2023-08-27 09:48:58 -05:00

22 lines
1.2 KiB
Vue

<script setup lang="ts">
</script>
<template>
<div class="bg-charcoal w-screen h-screen">
<div class="bg-dark-blue flex flex-col items-center gap-8">
<div class="mx-auto my-4 text-white text-8xl text-center">Ben Shiller</div>
<div class="flex flex-row gap-32">
<LinkIconText img-src="github-mark-white.svg" link="https://github.com/shillerben">GitHub</LinkIconText>
<LinkIconText img-src="gitea-logo.svg" link="https://git.shillerben.com/shillerben">Gitea</LinkIconText>
<LinkIconText img-src="linkedin-logo.svg" link="https://www.linkedin.com/in/ben-shiller/">LinkedIn</LinkIconText>
</div>
</div>
<!-- <div class="bg-dark-blue grid grid-cols-3 grid-rows-3">
<div class="col-span-3 row-span-2 mx-auto my-auto text-white text-8xl text-center">Ben Shiller</div>
<LinkIconText class="col-span-1 row-span-1" img-src="github-mark-white.svg" link="https://github.com">GitHub</LinkIconText>
<LinkIconText class="col-span-1 row-span-1" img-src="gitea-logo.svg" link="https://git.shillerben.com/">Gitea</LinkIconText>
<LinkIconText class="col-span-1 row-span-1" img-src="linkedin-logo.svg" link="https://www.linkedin.com/in/ben-shiller/">LinkedIn</LinkIconText>
</div> -->
</div>
</template>