Some checks failed
Deploy to Coolify / Code Quality (pull_request) Has been cancelled
Deploy to Coolify / Run Tests (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Development (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Production (pull_request) Has been cancelled
Deploy to Coolify / Deploy to Test (pull_request) Has been cancelled
Pull Request Checks / Validate PR (pull_request) Has been cancelled
- Install and configure Tailwind CSS (#9) - Install Nuxt UI component library (#10) - Create app layout with header/footer components (#11) - Implement Supabase client composable (#12) - Add TypeScript database types - Create placeholder pages (index, scan, settings) - Setup responsive navigation with mobile menu - Configure auth state management All Week 1 frontend foundation tasks complete.
16 lines
278 B
Vue
16 lines
278 B
Vue
<template>
|
|
<div class="min-h-screen bg-gray-50">
|
|
<AppHeader />
|
|
|
|
<main class="container mx-auto px-4 py-6 max-w-7xl">
|
|
<slot />
|
|
</main>
|
|
|
|
<AppFooter />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// App layout automatically wraps all pages
|
|
</script>
|