11 lines
244 B
Vue
11 lines
244 B
Vue
<template>
|
|
<div class="h-min-vh bg-black">
|
|
<h1 class="mb-4 text-3xl font-bold">User Center</h1>
|
|
<p class="text-gray-600">This is the user profile page.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// User center logic
|
|
</script>
|