Skip to content

Commit d23a74f

Browse files
committed
Merge branch 'dev' into main
2 parents 6824c64 + 6677a62 commit d23a74f

4 files changed

Lines changed: 83 additions & 30 deletions

File tree

apps/client/index.html

Lines changed: 68 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
<html>
33
<head>
44
<meta charset="utf-8" />
5-
<meta
6-
name="description"
7-
content="<%= productDescription %>"
8-
/>
95
<meta
106
name="format-detection"
117
content="telephone=no"
@@ -19,6 +15,74 @@
1915
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
2016
/>
2117

18+
<!-- Primary Meta Tags -->
19+
<meta
20+
name="description"
21+
content="DeepNotes is an open source, end-to-end encrypted visual note-taking app with bidirectional page navigation and live collaboration."
22+
/>
23+
<meta
24+
name="keywords"
25+
content="deepnotes, deep notes, note-taking, visual, spatial, end-to-end encrypted, collaborative, open source"
26+
/>
27+
<meta
28+
name="robots"
29+
content="index, follow"
30+
/>
31+
<meta
32+
http-equiv="Content-Type"
33+
content="text/html; charset=UTF-8"
34+
data-qmeta="equiv"
35+
/>
36+
<meta
37+
name="language"
38+
content="English"
39+
data-qmeta="language"
40+
/>
41+
42+
<!-- Open Graph / Facebook -->
43+
<meta
44+
property="og:type"
45+
content="website"
46+
/>
47+
<meta
48+
property="og:url"
49+
content="https://deepnotes.app/"
50+
/>
51+
<meta
52+
property="og:title"
53+
content="DeepNotes - Dive into your note universe"
54+
/>
55+
<meta
56+
property="og:description"
57+
content="DeepNotes is an open source, end-to-end encrypted visual note-taking app with bidirectional page navigation and live collaboration."
58+
/>
59+
<meta
60+
property="og:image"
61+
content="/meta-image.png"
62+
/>
63+
64+
<!-- Twitter -->
65+
<meta
66+
property="twitter:card"
67+
content="summary_large_image"
68+
/>
69+
<meta
70+
property="twitter:url"
71+
content="https://deepnotes.app/"
72+
/>
73+
<meta
74+
property="twitter:title"
75+
content="DeepNotes - Dive into your note universe"
76+
/>
77+
<meta
78+
property="twitter:description"
79+
content="DeepNotes is an open source, end-to-end encrypted visual note-taking app with bidirectional page navigation and live collaboration."
80+
/>
81+
<meta
82+
property="twitter:image"
83+
content="/meta-image.png"
84+
/>
85+
2286
<link
2387
rel="icon"
2488
type="image/png"

apps/client/public/meta-image.png

152 KB
Loading

apps/client/src/App.vue

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,6 @@ import { isCtrlDown } from './code/utils/misc';
1111
1212
useMeta(() => ({
1313
title: 'DeepNotes - Dive into your note universe',
14-
15-
meta: {
16-
description: {
17-
name: 'description',
18-
content:
19-
'DeepNotes is an end-to-end encrypted visual note-taking tool with deep page navigation.',
20-
},
21-
keywords: {
22-
name: 'keywords',
23-
content:
24-
'deepnotes, deep notes, note-taking, visual, spatial, end-to-end encrypted, collaborative, open source',
25-
},
26-
robots: {
27-
name: 'robots',
28-
content: 'index, follow',
29-
},
30-
equiv: {
31-
'http-equiv': 'Content-Type',
32-
content: 'text/html; charset=UTF-8',
33-
},
34-
language: {
35-
name: 'language',
36-
content: 'English',
37-
},
38-
},
3914
}));
4015
4116
onMounted(() => {

apps/client/src/layouts/HomeLayout/Footer.vue

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,20 @@
8787
>
8888
Reddit
8989
</a>
90+
91+
<a
92+
class="footer-item"
93+
href="https://www.linkedin.com/company/deepnotes"
94+
>
95+
LinkedIn
96+
</a>
97+
98+
<a
99+
class="footer-item"
100+
href="https://github.com/DeepNotesApp/DeepNotes"
101+
>
102+
GitHub
103+
</a>
90104
</div>
91105

92106
<div class="footer-section col-4 col-md-3">
@@ -115,7 +129,7 @@
115129
<Gap style="height: 20px" />
116130

117131
<div style="font-size: 13px; text-align: center">
118-
@ 2023 DeepNotes |
132+
@ {{ new Date().getFullYear() }} DeepNotes |
119133
<a href="mailto:contact@deepnotes.app">contact@deepnotes.app</a>
120134
</div>
121135

0 commit comments

Comments
 (0)