🎉 Initial commit
This commit is contained in:
8
app/app.vue
Normal file
8
app/app.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<UApp>
|
||||
<NuxtLayout>
|
||||
<p>Hello world!</p>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</UApp>
|
||||
</template>
|
||||
2
app/assets/css/main.css
Normal file
2
app/assets/css/main.css
Normal file
@@ -0,0 +1,2 @@
|
||||
@import "tailwindcss";
|
||||
@import "@nuxt/ui";
|
||||
10
app/layouts/default.vue
Normal file
10
app/layouts/default.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<slot />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
useHead({
|
||||
title: "Food Not Bombs",
|
||||
link: [{ rel: "icon", type: "image/png", href: "/logo.png" }],
|
||||
});
|
||||
</script>
|
||||
3
app/pages/index.vue
Normal file
3
app/pages/index.vue
Normal file
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<p>Index!!!</p>
|
||||
</template>
|
||||
Reference in New Issue
Block a user