@@ -3,8 +3,11 @@ layout: home
3
3
4
4
hero :
5
5
name : " DynAPI"
6
- text : " Dynamic API for many Databases"
6
+ text : " a <span style= \" color: #6196ff; \" >Dyn</span>amic <span style= \" color: #6196ff \" >API</span><br> for many Databases"
7
7
tagline : V2 is currently under development
8
+ image :
9
+ src : /dynapi.svg
10
+ alt : DynAPI
8
11
actions :
9
12
# - theme: brand
10
13
# text: Quickstart
13
16
# text: Documentation
14
17
# link: /docs
15
18
- theme : alt
16
- text : DynAPI (v1 )
19
+ text : DynAPI (V1 )
17
20
link : https://github.com/DynAPI/DynAPI
21
+ - theme : alt
22
+ text : See on GitHub
23
+ link : https://github.com/DynAPI/org.dynapi.dynapi
18
24
19
25
features :
20
26
- title : Fast
@@ -31,16 +37,10 @@ features:
31
37
details : In case you don't want to reveal your whole database it is possible to configure which parts are available.
32
38
---
33
39
34
- <hr />
35
-
36
- > [ !IMPORTANT]
37
- > The DynAPI Team is currently working on the better and faster Version 2 of DynAPI.
38
- > You may be searching for the [ Version 1] ( https://github.com/DynAPI/DynAPI )
39
-
40
- <hr />
41
-
42
40
<script setup >
43
41
import { withBase } from " vitepress" ;
42
+ import { VPTeamMembers } from ' vitepress/theme' ;
43
+
44
44
45
45
const databases = [
46
46
{ label: " ClickHouse" , src: " /dbms-icons/clickhouse.svg" },
@@ -51,16 +51,62 @@ const databases = [
51
51
{ label: " Redshift" , src: " /dbms-icons/redshift.svg" },
52
52
{ label: " Snowflake" , src: " /dbms-icons/snowflake.svg" },
53
53
{ label: " SQLite" , src: " /dbms-icons/sqlite.svg" },
54
- ]
54
+ ];
55
+ const members = [
56
+ {
57
+ avatar: ' https://www.github.com/PlayerG9.png' ,
58
+ name: ' PlayerG9' ,
59
+ title: ' Creator' ,
60
+ links: [
61
+ { icon: ' github' , link: ' https://github.com/PlayerG9' },
62
+ ]
63
+ },
64
+ ];
55
65
</script >
56
66
57
- <h1 style =" text-align : center " >DynAPI supports multiple DBMS</h1 >
67
+ ---
68
+
69
+ > [ !IMPORTANT]
70
+ > The DynAPI Team is currently working on the better and faster Version 2 of DynAPI.
71
+ > You may be searching for the [ Version 1] ( https://github.com/DynAPI/DynAPI ) .
72
+ >
73
+ > DynAPI (V1) is written in Python and supports only PostgreSQL Databases.
74
+
75
+ ---
76
+
77
+ <h1 style =" text-align : center " >DynAPI supports (soon) multiple DBMS</h1 >
58
78
59
- <div style =" display : flex ; justify-content : space-around ; padding : 2rem 0 " >
79
+ <div style =" display : flex ; justify-content : space-around ; flex-wrap : wrap ; padding : 2rem 0 " >
60
80
<div v-for="db in databases">
61
- <img style="height: 100px; margin: 0 auto" :alt="db.label" :src="withBase(db.src)" />
81
+ <img style="height: 100px; margin: 0 auto; filter: grayscale(1); " :alt="db.label" :src="withBase(db.src)" />
62
82
<p style="text-align: center">{{ db.label }}</p>
63
83
</div>
64
84
</div >
65
85
66
86
[ // ] : # ( - Vertica )
87
+
88
+ <!--
89
+
90
+ ---
91
+
92
+ <h1 style="text-align: center;">Performance</h1>
93
+
94
+ ---
95
+
96
+ <h1 style="text-align: center;">Security</h1>
97
+
98
+ ---
99
+
100
+ <h1 style="text-align: center;">Realtime Updates</h1>
101
+
102
+ ---
103
+
104
+ <h1 style="text-align: center;">Full Control</h1>
105
+
106
+ -->
107
+
108
+ ---
109
+
110
+ <h1 style =" text-align : center ;" >The DynAPI Team</h1 >
111
+
112
+ <VPTeamMembers size =" small " :members =" members " />
0 commit comments