Skip to content

Commit 6507776

Browse files
committed
Getting started: Layout on index pages
1 parent 169f964 commit 6507776

File tree

4 files changed

+139
-10
lines changed

4 files changed

+139
-10
lines changed

docs/start/applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(sample-applications)=
1+
(example-applications)=
22
# Sample Applications
33

44
::::{grid}

docs/start/index.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,105 @@
22
(getting-started)=
33
# Getting Started
44

5+
:::{rubric} Warm up
6+
:::
7+
8+
:::::{grid} 2 2 2 4
9+
:padding: 0
10+
:class-container: installation-grid
11+
12+
::::{grid-item-card} First steps with CrateDB
13+
:link: first-steps
14+
:link-type: ref
15+
:link-alt: First steps with CrateDB
16+
:padding: 3
17+
:text-align: center
18+
:class-card: sd-pt-3
19+
:class-body: sd-fs-1
20+
:class-title: sd-fs-6
21+
22+
{fas}`play`
23+
::::
24+
25+
::::{grid-item-card} Connect to CrateDB
26+
:link: connect
27+
:link-type: ref
28+
:link-alt: Connect to CrateDB
29+
:padding: 3
30+
:text-align: center
31+
:class-card: sd-pt-3
32+
:class-body: sd-fs-1
33+
:class-title: sd-fs-6
34+
35+
{fas}`link`
36+
::::
37+
38+
::::{grid-item-card} Query Capabilities
39+
:link: query-capabilities
40+
:link-type: ref
41+
:link-alt: Query Capabilities
42+
:padding: 3
43+
:text-align: center
44+
:class-card: sd-pt-3
45+
:class-body: sd-fs-1
46+
:class-title: sd-fs-6
47+
48+
{fas}`magnifying-glass`
49+
::::
50+
51+
::::{grid-item-card} Ingesting Data
52+
:link: ingest
53+
:link-type: ref
54+
:link-alt: Ingesting Data
55+
:padding: 3
56+
:text-align: center
57+
:class-card: sd-pt-3
58+
:class-body: sd-fs-1
59+
:class-title: sd-fs-6
60+
61+
{fas}`file-import`
62+
::::
63+
:::::
64+
65+
:::{rubric} Learn more
66+
:::
67+
68+
:::::{grid} 2 2 2 4
69+
:padding: 0
70+
:class-container: installation-grid
71+
72+
::::{grid-item-card} Application Examples
73+
:link: example-applications
74+
:link-type: ref
75+
:link-alt: Application Examples
76+
:padding: 3
77+
:text-align: center
78+
:class-card: sd-pt-3
79+
:class-body: sd-fs-1
80+
:class-title: sd-fs-6
81+
82+
{fas}`handshake`
83+
::::
84+
85+
::::{grid-item-card} Going Further
86+
:link: start-going-further
87+
:link-type: ref
88+
:link-alt: Going Further
89+
:padding: 3
90+
:text-align: center
91+
:class-card: sd-pt-3
92+
:class-body: sd-fs-1
93+
:class-title: sd-fs-6
94+
95+
{fas}`box-open`
96+
::::
97+
98+
:::::
99+
100+
5101
```{toctree}
6102
:maxdepth: 1
103+
:hidden:
7104
8105
first-steps
9106
connect

docs/start/query/ai-integration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
(ai-integration)=
12
# AI integration
23

34
:::::{grid}

docs/start/query/index.md

Lines changed: 40 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,53 @@
22
(query-capabilities)=
33
# Query capabilities
44

5+
SQL is the most widely used language for querying data and is the natural
6+
choice for people in many roles working with data in databases.
7+
8+
CrateDB extends industry-standard SQL with functionalities to support its
9+
data types, data I/O procedures, and cluster management.
10+
11+
12+
::::{grid} 2
13+
:gutter: 2
14+
15+
:::{grid-item-card} Aggregations
16+
:link: aggregations
17+
:link-type: ref
18+
CrateDB is designed to deliver high-performance aggregations on massive volumes of data—in real time and using familiar SQL syntax.
19+
:::
20+
21+
:::{grid-item-card} Ad-hoc queries
22+
:link: ad-hoc-queries
23+
:link-type: ref
24+
CrateDB is built to support highly dynamic, ad-hoc querying, even on large-scale, real-time datasets.
25+
:::
26+
27+
:::{grid-item-card} Search
28+
:link: search-overview
29+
:link-type: ref
30+
Based on Apache Lucene, CrateDB offers native BM25 term search and vector search, all using SQL. By combining it, also using SQL, you can implement powerful single-query hybrid search.
31+
:::
32+
33+
:::{grid-item-card} AI integration
34+
:link: ai-integration
35+
:link-type: ref
36+
CrateDB is not just a real-time analytics database, it’s a powerful platform to feed and interact with machine learning models, thanks to its ability to store, query, and transform structured, unstructured, and vectorized data at scale using standard SQL.
37+
:::
38+
39+
::::
40+
541
```{toctree}
642
:maxdepth: 1
43+
:hidden:
744
845
aggregations
946
ad-hoc
1047
../../feature/search/index
1148
ai-integration
1249
```
1350

14-
:::{note}
15-
SQL is the most widely used language for querying data and is the natural
16-
choice for people in many roles working with data in databases.
17-
18-
CrateDB extends industry-standard SQL with functionalities to support its
19-
data types, data I/O procedures, and cluster management.
20-
21-
To learn more, check out the {ref}`SQL introduction <sql>`, {ref}`advanced-querying`,
22-
and the {ref}`SQL syntax reference manual <crate-reference:sql>`.
51+
:::{seealso}
52+
To learn more, check out the {ref}`SQL introduction <sql>`, {ref}`advanced-querying`
53+
tutorials, and the {ref}`SQL syntax reference manual <crate-reference:sql>`.
2354
:::

0 commit comments

Comments
 (0)