31 lines
1.3 KiB
Vue
31 lines
1.3 KiB
Vue
<script setup>
|
|
import Header from "@/components/text/Header.vue";
|
|
import Paragraph from "@/components/text/Paragraph.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-1 border-box flex flex-col p-1 text-left items-start justify-start">
|
|
<Header>Yo</Header>
|
|
<!-- <Header>Intro</Header> -->
|
|
<!-- <Paragraph> -->
|
|
<!-- Hi, I'm Adam, thank you for visiting my website. -->
|
|
<!-- </Paragraph> -->
|
|
<!-- <Header>Getting around</Header> -->
|
|
<!-- <Paragraph> -->
|
|
<!-- Pages available can be traversed through links below. I am hoping to -->
|
|
<!-- add some shrines, code-walkthoughs, live chat and page transitions -->
|
|
<!-- at a later date. -->
|
|
<!-- </Paragraph> -->
|
|
<!-- <Header>Contact</Header> -->
|
|
<!-- <Paragraph> -->
|
|
<!-- Please email me <a href="mailto:adam.a.french@outlook.com">here</a>, -->
|
|
<!-- or contact me though any of the social medias linked. -->
|
|
<!-- </Paragraph> -->
|
|
<!-- <Header>A Quote</Header> -->
|
|
<!-- <Paragraph> -->
|
|
<!-- One crossed wire, one wayward pinch of potassium chlorate, one -->
|
|
<!-- errant twitch, and KA-BLOOIE! -->
|
|
<!-- </Paragraph> -->
|
|
</div>
|
|
</template>
|