farmstar-survey-ui/app.vue

23 lines
439 B
Vue

<template>
<AppNavbar />
<div class="bg-gray-100">
<div class="max-w-screen-xl mx-auto">
<NuxtPage />
</div>
</div>
</template>
<script setup>
useHead({
title: "FarmStar Survey",
});
</script>
<style>
/* You can keep or remove the body style depending on your preference */
body {
background-color: #f3f4f6; /* You can use the color code for light grey */
margin: 0; /* Remove default body margin */
}
</style>