Skip to content

Commit 7c778ca

Browse files
Styling improved and home page added (#3)
* Styling improved and home page added * Fixing the linking issues * Styling improved and home page added * Fixing the linking issues * Updating logo * Styling improved and home page added * Fixing the linking issues * Updating logo * Updates some links * updating links * remove duplicate keys * Change the email address * Email 404 error fixed --------- Co-authored-by: Shalinga Manasinghe <[email protected]>
1 parent edd4d91 commit 7c778ca

File tree

9 files changed

+313
-107
lines changed

9 files changed

+313
-107
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ site/
66
*.bak
77
__pycache__
88
.venv
9-
.idea
9+
.idea
10+
venv

docs/assets/background.png

622 KB
Loading

docs/assets/datusignature.png

7.55 KB
Loading

docs/assets/favicon.ico

Whitespace-only changes.

docs/assets/logo-light.svg

3.07 KB
Loading

docs/index.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
hide:
3+
-toc
4+
---
5+
#
6+
<style>
7+
/* Application header should be static for the landing page */
8+
.md-header {
9+
position: initial;
10+
}
11+
12+
/* Remove spacing, as we cannot hide it completely */
13+
.md-main__inner {
14+
margin: 0;
15+
}
16+
17+
.md-content{
18+
background: transparent !important;
19+
}
20+
.md-main__inner {
21+
background: transparent !important;
22+
}
23+
24+
/* Hide navigation */
25+
@media screen and (min-width: 76.25em) {
26+
.md-sidebar--primary {
27+
display: none;
28+
}
29+
}
30+
/* Hide table of contents */
31+
@media screen and (min-width: 60em) {
32+
.md-sidebar--secondary {
33+
display: none;
34+
}
35+
}
36+
</style>
37+
<div class="datu-hero">
38+
<img src="assets/datusignature.png" alt="Datu Logo" width="90" style="margin-bottom:1.5rem;">
39+
<div class="datu-hero-title">Datu AI Analyst</div>
40+
<div class="datu-hero-subtitle">Build intelligent, data-driven AI agents in just a few lines of code.</div>
41+
<a href="user-guide/quickstart/" class="datu-hero-btn">Get Started</a>
42+
</div>
43+
44+
<div class="datu-features">
45+
<div class="datu-feature">
46+
<h3>Data-Driven Agents</h3>
47+
<p>Connect to databases, files, APIs, and more. Let your agents analyze, transform, and act on data.</p>
48+
</div>
49+
<div class="datu-feature">
50+
<h3>Provider Agnostic</h3>
51+
<p>Use any LLM provider—OpenAI, AWS Bedrock, Anthropic, and more. Switch providers without code changes.</p>
52+
</div>
53+
<div class="datu-feature">
54+
<h3>Simple Multi-Agent Workflows</h3>
55+
<p>Compose agents, tools, and workflows with simple primitives for collaboration and orchestration.</p>
56+
</div>
57+
<div class="datu-feature">
58+
<h3>Production Ready</h3>
59+
<p>Deploy to containers, serverless, or cloud. Built-in observability, security, and extensibility.</p>
60+
</div>
61+
</div>
62+
63+
<div class="datu-cta">
64+
<div>Ready to get started?</div>
65+
<div style="margin:1rem 0 0.5rem 0;">Check out the quickstart guide or book a demo with our team.</div>
66+
<a href="user-guide/quickstart/" class="datu-cta-btn">Quickstart Guide</a>
67+
<a href="mailto:[email protected]" class="datu-cta-btn">Book a Demo</a>
68+
</div>

0 commit comments

Comments
 (0)