-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.vue
More file actions
59 lines (53 loc) · 2.04 KB
/
app.vue
File metadata and controls
59 lines (53 loc) · 2.04 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<script setup lang="ts">
import { Analytics } from '@vercel/analytics/nuxt'
useHead({
title: 'imoji – Copy & Explore Emojis Easily',
htmlAttrs: {
lang: 'en',
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'robots', content: 'index, follow' },
{ name: 'author', content: 'imoji' },
{ name: 'description', content: 'imoji lets you explore and copy emojis with skin tone filters, recent usage, and fast search. Super smooth UX.' },
{ name: 'keywords', content: 'emoji, emojis, ascii, copy emoji, emoji list, emoji skin tone, fast emoji search, imoji' },
{ name: 'theme-color', content: '#ffc337' },
{ property: 'og:title', content: 'imoji – Copy & Explore Emojis Easily' },
{ property: 'og:description', content: 'Explore emojis by category and skin tone. One click to copy. Super clean UI.' },
{ property: 'og:image', content: 'https://imoji.co/og.jpg' },
{ property: 'og:image:width', content: '1200' },
{ property: 'og:image:height', content: '630' },
{ property: 'og:url', content: 'https://imoji.co' },
{ property: 'og:type', content: 'website' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'imoji – Copy & Explore Emojis' },
{ name: 'twitter:description', content: 'Fast emoji explorer with copy feature and tone filters.' },
{ name: 'twitter:image', content: 'https://imoji.co/og.jpg' },
{ name: 'twitter:creator', content: '@atlaxtt' },
],
link: [
{ rel: 'icon', type: 'image/png', href: '/favicon.ico' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
{ rel: 'canonical', href: 'https://imoji.co' },
],
script: [
{
async: true,
src: 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1948589981733097',
crossorigin: 'anonymous',
},
],
})
</script>
<template>
<Analytics />
<UApp>
<NuxtPage />
</UApp>
</template>
<style>
div {
font-family: 'Poppins', sans-serif;
}
</style>