-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.vue
More file actions
39 lines (33 loc) · 1.05 KB
/
app.vue
File metadata and controls
39 lines (33 loc) · 1.05 KB
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
37
38
39
<template>
<div
class="min-h-screen flex flex-col bg-white dark:bg-gray-900 text-gray-900 dark:text-white transition-colors duration-300"
>
<AppHeader />
<main id="main-content" role="main" class="flex-1 flex items-center justify-center px-4 py-12">
<div class="w-full max-w-xl">
<div class="text-center mb-8 animate-fade-in">
<h1
class="text-4xl font-bold mb-2 bg-linear-to-r from-blue-600 to-cyan-600 dark:from-blue-400 dark:to-cyan-400 bg-clip-text text-transparent"
>
Timezone Converter
</h1>
<p class="text-gray-600 dark:text-gray-400">Simple, fast, no distractions</p>
</div>
<TimeConverter />
</div>
</main>
<AppFooter />
<Analytics />
<SpeedInsights />
</div>
</template>
<script setup lang="ts">
import { Analytics } from '@vercel/analytics/nuxt'
import { SpeedInsights } from '@vercel/speed-insights/nuxt'
// Set page metadata
useHead({
htmlAttrs: {
lang: 'en',
},
})
</script>