-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
63 lines (56 loc) · 1.49 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<template>
<div class="app dark:bg-black dark:text-white">
<NuxtLayout >
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup>
const setdata = {
title: "NeerStack | Home",
description: "NeerStack is a software development company that provides software development services to clients all over the world.",
keywords: "NeerStack, Software Development, Web Development, Mobile App Development, UI/UX Design, API Development, Software Testing, Product Management",
site_name: "NeerStack",
}
useHead({
title: computed(() => setdata.title),
description: computed(() => setdata.description),
keywords: computed(() => setdata.keywords),
site_name: computed(() => setdata.site_name),
})
</script>
<style>
html {
scroll-behavior: smooth; /* set scroll-behaviour to smooth here */
}
:root {
--primary: #4ade80;
--primary-alt: #22c55e;
--grey: #64748b;
--dark: #1e293b;
--dark-alt: #334155;
--light: #f1f5f9;
--sidebar-width: 300px;
--black: #000;
--black-alt: #232b2b
}
#__nuxt {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
justify-content: center;
max-width: 100%;
width: 100%;
text-align: center;
color: #2c3e50;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Fira sans", sans-serif, Arial, Helvetica, sans-serif;
}
.dark{
background: var(--black);
}
</style>