Page Stubs and Click-Through Flow

This commit is contained in:
2026-02-03 10:14:00 +01:00
parent 3684d9ef6b
commit e8be239c32
27 changed files with 595 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
<script setup>
defineProps({
class: {
type: String,
default: '',
},
})
</script>
<template>
<div :class="['font-bold text-primary', $props.class]">
Piccadilly
</div>
</template>