-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
30 lines (27 loc) · 850 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
<template>
<div id="app">
<NuxtLayout name="default">
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup>
useHead({
title: 'IssueBuilder - AI-Powered GitHub Issue Generator',
titleTemplate: '%s | IssueBuilder',
meta: [
{ name: 'description', content: 'Transform your documentation into well-structured GitHub issues using AI. Automatically generate, refine, and manage issues with our intelligent issue parser.' },
{ name: 'keywords', content: 'GitHub issues, AI issue generator, documentation parser, project management, issue tracking, agile development, software development tools' },
{ name: 'theme-color', content: '#8B5CF6' },
{ name: 'application-name', content: 'IssueBuilder' }
]
})
</script>
<style>
body {
font-family: 'Figtree', sans-serif;
}
#app {
min-height: 100vh;
}
</style>