Files
solidtime/resources/js/Pages/Teams/Create.vue
Gregor Vostrak 62ee7d60e3 add light mode
2025-03-28 14:17:46 +01:00

21 lines
571 B
Vue

<script setup lang="ts">
import AppLayout from '@/Layouts/AppLayout.vue';
import CreateTeamForm from '@/Pages/Teams/Partials/CreateTeamForm.vue';
</script>
<template>
<AppLayout title="Create Organization">
<template #header>
<h2 class="font-semibold text-xl text-text-primary leading-tight">
Create Organization
</h2>
</template>
<div>
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
<CreateTeamForm />
</div>
</div>
</AppLayout>
</template>