16 lines
299 B
Vue
16 lines
299 B
Vue
<template>
|
|
<section id="contact">
|
|
<div
|
|
class="snap-start gap-36 flex flex-col items-center mt-[25px] w-full min-h-[1000px]"
|
|
>
|
|
<SectionHeader title="Contact Me" />
|
|
|
|
<ContactElement />
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style></style>
|