-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.vue
36 lines (30 loc) · 843 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<script setup lang="ts">
const themeColor = useThemeColor()
</script>
<template>
<Head>
<Meta content="Bird Avatar Generator" property="og:title" />
<Meta
content="Generate a bird avatar to use as a profile picture or whatever else you like 🙂"
property="og:description"
/>
<Meta content="/bird-2.png" property="og:image" />
<Meta content="#3b82f6" data-react-helmet="true" name="theme-color" />
<Link rel="icon" href="favicon.svg" type="image/svg+xml" />
</Head>
<div
class="grid min-h-screen place-items-center gap-4 px-4 transition duration-200"
:class="`bg-${themeColor}-200`"
>
<div class="grid gap-4 py-8">
<BirdGenerator />
<RecentBirds class="mb-4" />
<Footer />
</div>
</div>
</template>
<style>
/* * {
outline: 1px solid tomato;
} */
</style>