mirror of
https://github.com/grassrootseconomics/farmstar-survey-ui.git
synced 2024-11-16 16:36:47 +01:00
23 lines
439 B
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>
|