mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-03-16 05:09:46 +01:00
12 lines
273 B
Vue
12 lines
273 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
title: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<h1 class="w-full md:w-[110%] mb-2 font-bold text-4xl md:text-7xl text-transparent opacity-15 text-stroke-neutral-500 text-stroke-2 md:-translate-x-16">
|
|
{{ title }}
|
|
</h1>
|
|
</template>
|