-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.vue
62 lines (59 loc) · 1.86 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
<template>
<LayoutHeader/>
<LandingHeader/>
<EditorOverview/>
<SectionOutput />
<Section>
<SectionHeader
title="API is the feature"
text="Every block is powered by plugins — easy to create your own. Explore dozens of ready-made options for blocks, inline formatting, and block tunes."
/>
<ApiImage />
</Section>
<Section>
<SectionHeader
title="Sponsors"
text="Editor.js is free and open source. If you rely on it, you may be interested in supporting its maintenance and evolution."
/>
<SponsorsList />
<SponsorsBecome />
</Section>
<Section>
<SectionHeader
title="Global WYSIWYG ecosystem"
text="Editor.js is more than just an editor — it is a thriving global community of developers building tools, integrations, and innovative features. And <b>we really need your star</b> to support the community's growth."
/>
<Star/>
</Section>
<Section>
<SectionHeader
text="Trusted by thousands worldwide."
/>
<LovedBy />
</Section>
<Section :no-paddings="true">
<Join/>
</Section>
<LayoutFooter />
</template>
<script lang="ts" setup>
const config = useRuntimeConfig();
useServerSeoMeta({
title: 'Editor.js',
ogTitle: 'Editor.js',
description: 'Free block-style editor with a universal JSON output',
ogDescription: 'Free block-style editor with a universal JSON output',
ogImage: config.baseUrl + '/og-image.png',
twitterCard: 'summary_large_image',
})
</script>
<style>
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-image: linear-gradient(180deg, #F1F8FF 0%, #fff 100%);
background-size: 100vw 100vh;
background-repeat: no-repeat;
}
</style>