Skip to content

Commit f0f4447

Browse files
Merge pull request #1567 from redis/DOC-5131-dev-landing-links
DOC-5131 first attempt at links/formatting for develop landing page
2 parents 11087bf + 3de769f commit f0f4447

File tree

5 files changed

+46
-4
lines changed

5 files changed

+46
-4
lines changed

content/develop/_index.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22
title: Develop with Redis
33
description: Learn how to develop with Redis
44
linkTitle: Develop
5+
hideListLinks: true
6+
hideTOC: true
57
---
68

7-
Explore the pages below to learn more about developing with Redis Open Source.
9+
Get a Redis server running in minutes with a free trial of
10+
[Redis Cloud]({{< relref "/operate/rc" >}}), or install
11+
[Redis Open Source]({{< relref "/operate/oss_and_stack" >}}) locally
12+
on your machine. Then, explore Redis with your favorite
13+
[programming language]({{< relref "/develop/clients" >}})
14+
or analyze and manage your database with our
15+
[UI tools]({{< relref "/develop/tools" >}}):
16+
17+
| | Get started | Document search | Vector search |
18+
|:----- | :-----: | :-----: | :-----:|
19+
| [Python]({{< relref "/develop/clients/redis-py" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/connect" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/queryjson" >}}) | [See Python examples]({{< relref "/develop/clients/redis-py/vecsearch" >}}) |
20+
| [C#/.NET]({{< relref "/develop/clients/dotnet" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/connect" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/queryjson" >}}) | [See C# examples]({{< relref "/develop/clients/dotnet/vecsearch" >}}) |
21+
| [Node.js]({{< relref "/develop/clients/nodejs" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/connect" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/queryjson" >}}) | [See JS examples]({{< relref "/develop/clients/nodejs/vecsearch" >}}) |
22+
| [Java]({{< relref "/develop/clients/jedis" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/connect" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/queryjson" >}}) | [See Java examples]({{< relref "/develop/clients/jedis/vecsearch" >}}) |
23+
| [Go]({{< relref "/develop/clients/go" >}}) | [See Go examples]({{< relref "/develop/clients/go/connect" >}}) | [See Go examples]({{< relref "/develop/clients/go/queryjson" >}}) | [See Go examples]({{< relref "/develop/clients/go/vecsearch" >}}) |
24+
| [PHP]({{< relref "/develop/clients/php" >}}) | [See PHP examples]({{< relref "/develop/clients/php/connect" >}}) | [See PHP examples]({{< relref "/develop/clients/php/queryjson" >}}) | [See PHP examples]({{< relref "/develop/clients/php/vecsearch" >}}) |
25+
26+
<div class="flex flex-col gap-5">
27+
<div class="flex items-start">
28+
{{< image filename="develop/tools/insight/images/Browser.png" class="w-[300px] mr-4" >}}
29+
<div>
30+
<h3><a href='{{< relref "/develop/tools/insight">}}'>Redis Insight</a></h3>
31+
<p>Visual client tool for creating, managing, and analyzing Redis databases.</p>
32+
</div>
33+
</div>
34+
<div class="flex items-start">
35+
{{< image filename="images/dev/connect/vscode/vscode-cli.png" class="w-[300px] mr-4" >}}
36+
<div>
37+
<h3><a href='{{< relref "/develop/tools/redis-for-vscode" >}}'>Redis for VS Code</a></h3>
38+
<p>Visual client tool for creating, managing, and analyzing Redis databases.</p>
39+
</div>
40+
</div>
41+
</div>
42+
43+
| {{< image filename="images/icon_logo/icon-developers-32-midnight.png" >}} </br>[**Quick start**]({{< relref "/develop/get-started" >}}) | {{< image filename="images/icon_logo/icon-data-structures-32-midnight.png" >}} </br>[**Data types**]({{< relref "/develop/data-types" >}}) | {{< image filename="images/icon_logo/icon-text-search-32-midnight.png" >}} </br>[**Query engine**]({{< relref "/develop/interact/search-and-query" >}}) |
44+
|---|---|---|
45+
| [Vector database]({{< relref "/develop/get-started/vector-database" >}})</br>[Document store]({{< relref "/develop/get-started/document-database" >}})</br>[Data structure store]({{< relref "/develop/get-started/data-store" >}})</br>[RAG with Redis]({{< relref "/develop/get-started/rag" >}})</br>[GenAI]({{< relref "/develop/get-started/redis-in-ai" >}}) | [String]({{< relref "/develop/data-types/strings" >}})</br>[JSON]({{< relref "/develop/data-types/json" >}})</br>[Hash]({{< relref "/develop/data-types/hashes" >}})</br>[Vector set]({{< relref "/develop/data-types/vector-sets" >}})</br>[Probabilistic types]({{< relref "/develop/data-types/probabilistic" >}}) | [Get started]({{< relref "/develop/interact/search-and-query" >}})</br>[Schema field types]({{< relref "/develop/interact/search-and-query/basic-constructs/field-and-type-options" >}})</br>[Indexing]({{< relref "/develop/interact/search-and-query/indexing" >}})</br>[Querying]({{< relref "/develop/interact/search-and-query/query" >}})</br>[Use cases]({{< relref "/develop/interact/search-and-query/query-use-cases" >}})

layouts/develop/list.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h1>
3838
<!-- Responsive CLI Display Block as Table -->
3939
{{ if strings.HasSuffix .RelPermalink "/develop/" }}
4040
<div class="overflow-x-auto">
41-
<table class="w-full border-collapse md:table">
41+
<table class="w-full border-collapse md:table bg-neutral-150">
4242
<thead>
4343
<tr>
4444
<th class="p-4 text-left">Try these Redis commands</th>
@@ -54,7 +54,8 @@ <h1>
5454
<code><a href="/commands/set">SET</a> e 2.71</code></br>
5555
<code><a href="/commands/incrbyfloat">INCRBYFLOAT</a> e 0.43</code></br>
5656
<code><a href="/commands/rename">RENAME</a> e pi</code></br>
57-
<code><a href="/commands/get">GET</a> pi</code>
57+
<code><a href="/commands/get">GET</a> pi</code><br/><br/>
58+
# <a href="/commands/">See all commands</a>
5859
</td>
5960
<td class="align-top p-4 w-full md:w-[60%]">
6061
<div class="bg-slate-900 rounded-xl shadow-lg shadow-slate-900/10 h-60 overflow-y-auto">
@@ -92,7 +93,10 @@ <h1>
9293
{{ partial "feedback.html" . }}
9394
</section>
9495
</div>
95-
{{ partial "docs-toc.html" . }}
96+
97+
{{ if not .Params.hideTOC }}
98+
{{ partial "docs-toc.html" . }}
99+
{{ end }}
96100
{{ partial "scripts.html" . }}
97101
</main>
98102
{{ end }}
Loading
Loading
Loading

0 commit comments

Comments
 (0)