feat: Initialize project with configuration files and basic structure

This commit is contained in:
Thibault Pouch
2026-05-01 10:57:34 +02:00
parent 81da61dd73
commit 7c6bd42fec
8 changed files with 70 additions and 0 deletions

13
pages/index.vue Normal file
View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
useSeoMeta({
title: 'Home — Headless Hazard',
description: 'Welcome to CrowMate Studio and Headless Hazard.',
ogImage: '/images/og-default.jpg',
})
</script>
<template>
<div class="min-h-screen flex items-center justify-center">
<h1 class="text-4xl font-bold">Welcome</h1>
</div>
</template>