Initial website implementation with Hero section
This commit is contained in:
21
app/layouts/default.vue
Normal file
21
app/layouts/default.vue
Normal file
@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<ClientOnly>
|
||||
<Sonner />
|
||||
</ClientOnly>
|
||||
<div class="flex flex-1">
|
||||
<div class="w-full">
|
||||
<header>
|
||||
<AppHeader />
|
||||
</header>
|
||||
<main class="h-screen">
|
||||
<slot />
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import 'vue-sonner/style.css'
|
||||
import Sonner from '@/components/ui/sonner/Sonner.vue';
|
||||
import AppHeader from '@/components/ui/internal/AppHeader.vue';
|
||||
</script>
|
||||
Reference in New Issue
Block a user