-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAboutView.vue
More file actions
95 lines (89 loc) · 3.52 KB
/
AboutView.vue
File metadata and controls
95 lines (89 loc) · 3.52 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<script setup lang="ts">
import { ArrowUpRight } from 'lucide-vue-next';
import { useSEO } from '@/composables/useSEO';
import { externalLinks } from '@/config/externalLinks';
import MainLayout from '@/layouts/MainLayout.vue';
useSEO({
title: 'About Dither - Open Blockchain Messaging Protocol | dither.chat',
description: 'Dither is an open messaging protocol built on blockchain. Decentralized social messaging, onchain posts, and durable protocol for Web3. Built on AtomOne blockchain.',
ogTitle: 'About Dither - Open Blockchain Messaging Protocol',
ogDescription: 'Open messaging protocol built on blockchain. Decentralized social messaging, onchain posts, and durable protocol for Web3.',
ogUrl: `${externalLinks.siteUrl}/about`,
});
</script>
<template>
<MainLayout>
<div class="flex flex-col min-h-full">
<div class="flex flex-col items-center justify-center gap-12 px-6 py-20 max-w-3xl mx-auto w-full min-h-[calc(100vh-220px)] text-center">
<h1 class="text-7xl font-bold tracking-tight leading-none">
dither
</h1>
<div class="flex flex-col gap-4 max-w-2xl">
<p class="text-3xl text-foreground font-semibold leading-snug tracking-tight">
{{ $t('components.About.heroTagline') }}
</p>
<p class="text-base text-muted-foreground leading-relaxed">
Posts are stored permanently on
<a
:href="externalLinks.atomoneWebsite"
target="_blank"
rel="noopener noreferrer"
class="text-foreground hover:underline transition-colors"
>
{{ $t('components.About.atomoneLink') }}
</a>.
</p>
<p class="text-base text-muted-foreground/75">
{{ $t('components.About.coreDesc') }}
</p>
</div>
<a
:href="externalLinks.protocolDocs"
target="_blank"
rel="noopener noreferrer"
class="text-sm text-muted-foreground/80 hover:text-foreground transition-colors flex items-center gap-1"
>
{{ $t('components.About.ctaDocs') }}
<ArrowUpRight class="size-3" />
</a>
<div class="flex flex-wrap items-center justify-center gap-4 text-sm text-muted-foreground/80 mt-12 border-t border-border/40 pt-5 w-full">
<a
:href="externalLinks.privacyPolicy"
target="_blank"
rel="noopener noreferrer"
class="hover:text-foreground transition-colors"
>
{{ $t('components.About.ctaPrivacy') }}
</a>
<span aria-hidden="true">•</span>
<a
:href="externalLinks.termsOfService"
target="_blank"
rel="noopener noreferrer"
class="hover:text-foreground transition-colors"
>
{{ $t('components.About.ctaTerms') }}
</a>
<span aria-hidden="true">•</span>
<a
:href="externalLinks.githubRepo"
target="_blank"
rel="noopener noreferrer"
class="hover:text-foreground transition-colors"
>
{{ $t('components.About.ctaGitHub') }}
</a>
<span aria-hidden="true">•</span>
<a
:href="externalLinks.telegramBot"
target="_blank"
rel="noopener noreferrer"
class="hover:text-foreground transition-colors"
>
{{ $t('components.About.ctaTelegram') }}
</a>
</div>
</div>
</div>
</MainLayout>
</template>