-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new sections to home page (#170)
* X * Add quotes functionality to website * Add support options * Update footer and community section * Refactor home page with Jekyll templates * Refactor based on comment * X * X * Refactor footer to update copyright year format * Add community social posts * X * Add pics for community quotes section * Reduce img size * Refactor CSS for better readability * Increase item width --------- Co-authored-by: prrao87 <prrao87@gmail.com>
- Loading branch information
Showing
19 changed files
with
625 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
- quote: "I've enjoyed spending time with Kuzu and this blog neatly summarised why I like it (namely, how it interops so easily with relational sets - arrow, parquet etc)" | ||
url: https://x.com/Jamessandwich/status/1701160520508678388 | ||
name: James McNeill | ||
handle: Jamessandwich | ||
img: /img/community/jamessandwich.jpg | ||
platform: twitter | ||
|
||
- quote: Finally, a whole host of new technologies from embedded databases (@duckdb, @kuzudb) and open table formats (@ApacheIceberg, @apachehudi) are making it easier to query data in object storage and analyze "small" data on a local machine/single node. | ||
url: https://x.com/VinIyengar/status/1724902592030126170 | ||
name: Vinay Iyengar | ||
handle: VinIyengar | ||
img: /img/community/vinIyengar.jpg | ||
platform: twitter | ||
|
||
- quote: "One of my favorite recent discoveries is @kuzudb. Super lightweight and supports the Cypher query language, such a nice project for graph analytics." | ||
url: https://x.com/chr_norm/status/1682053731339182080 | ||
name: Chris Norman | ||
handle: chr_norm | ||
img: /img/community/chr_norm.jpg | ||
platform: twitter | ||
|
||
- quote: "Kùzu is a really good graph database. If DuckDB is as an emerging power in the relational database world, there is Kùzu in the GDBMS world, and it is open source and faithful to the basics." | ||
url: https://jeongiitae.medium.com/you-must-eat-this-graph-news-graph-omakase-2-weeks-may-db41d24b77d2 | ||
name: Jeong Yitae | ||
handle: jeongiitae | ||
img: /img/community/jandland2.jpg | ||
platform: medium | ||
|
||
- quote: "KuzuDB has straightforward integrations with Polars, NetworkX, Pandas, PyArrow and...Torch Geometric! Meaning that you can export data towards Graph Machine Learning with one method call." | ||
url: https://www.linkedin.com/posts/francoisvanderseypen_graphmachinelearning-activity-7171385765657075712-3XIY | ||
name: Francois Vanderseypen | ||
handle: francoisvanderseypen | ||
img: /img/community/francoisvanderseypen.jpeg | ||
platform: linkedin | ||
|
||
- quote: | | ||
Embedded DBs are having a renaissance. | ||
RDBMS: SQLite | ||
OLAP: DuckDB | ||
Graph: KuzuDB | ||
Search: Chroma | ||
The developer experience is so good on these. Things just work. Really cool to see. | ||
url: https://x.com/criccomini/status/1627508372194074624 | ||
name: Chris Riccomini | ||
handle: criccomini | ||
img: /img/community/criccomini.jpg | ||
platform: twitter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<section id="community" class="main special"> | ||
<header class="major"> | ||
<h2>Our Community</h2> | ||
</header> | ||
<div class="community-wrapper"> | ||
{% for post in site.data.community %} | ||
<div class="community-item"> | ||
<div class="community-header"> | ||
<img src="{{post.img}}" alt="{{post.name}}"> | ||
<p> | ||
<strong> {{post.name}} </strong> | ||
<br> | ||
<small> @{{post.handle}} </small> | ||
</p> | ||
<a href="{{post.url}}" target="_blank" rel="noopener noreferrer"> | ||
<i class="fa-solid fa-brands fa-{{post.platform}}"></i></a> | ||
</div> | ||
|
||
<p> | ||
{{post.quote | newline_to_br}} | ||
</p> | ||
|
||
</div> | ||
{% endfor %} | ||
|
||
</div> | ||
<div class="community-buttons"> | ||
<i class="fas fa-chevron-left" | ||
onclick="document.querySelector('.community-wrapper').scrollBy({left: -400, behavior: 'smooth'})"></i> | ||
</i> | ||
<i class="fas fa-chevron-right" | ||
onclick="document.querySelector('.community-wrapper').scrollBy({left: 400, behavior: 'smooth'})"></i> | ||
</i> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<section id="quotes" class="main quotes"> | ||
<div class="buttons" id="quote-buttons"> | ||
<i class="fa-solid fa-chevron-up" id="next-quote"></i> | ||
<i class="fa-solid fa-chevron-down" id="prev-quote"></i> | ||
</div> | ||
<div class="quote"> | ||
<i class="fa-solid fa-quote-left"></i> | ||
<p id="quote-text"> | ||
</p> | ||
<i class="fa-solid fa-quote-right"></i> | ||
<small class="name-title"> | ||
<span id="quote-name"></span> | ||
<a href="#" | ||
target="_blank" id="quote-company"></a> | ||
</small> | ||
</div> | ||
|
||
<div class="bio"> | ||
<img id="quote-img" > | ||
<img id="quote-logo" > | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<section id="support" class="main special"> | ||
<header class="major"> | ||
<h2>Kùzu Support Options</h2> | ||
</header> | ||
<div class="support"> | ||
<div class="summary"> | ||
Kùzu Inc. provides professional support for using Kùzu, ensuring timely responses and flexible coverage. | ||
<a href="mailto:contact@kuzudb.com"> | ||
Contact us</a> | ||
for more | ||
information. | ||
|
||
</div> | ||
<div class="support-options"> | ||
<div class="free"> | ||
<small>Free</small> | ||
<h2>Community Support</h2> | ||
<hr> | ||
<ul> | ||
<li> | ||
<i class="fa-regular fa-circle-check"></i> | ||
Public issue tracker | ||
</li> | ||
<li> | ||
<i class="fa-regular fa-circle-xmark"></i> | ||
No guaranteed response time | ||
</li> | ||
<li> | ||
<i class="fa-regular | ||
fa-circle-xmark"></i> | ||
No guaranteed resolution | ||
</li> | ||
</ul> | ||
|
||
<a class="button secondary" href="https://github.com/kuzudb/kuzu/issues/" target="_blank">Get | ||
Started</a> | ||
|
||
</div> | ||
<div class="premium"> | ||
<small>Negotiable</small> | ||
<h2>Custom Support</h2> | ||
<hr> | ||
|
||
<ul> | ||
<li> | ||
<i class="fa-regular fa-circle-check"></i> | ||
Private issue tracker | ||
</li> | ||
<li> | ||
<i class="fa-regular fa-circle-check"></i> | ||
Guaranteed response time | ||
</li> | ||
|
||
<li> | ||
<i class="fa-regular fa-circle-check"></i> | ||
Deployment and performance advice | ||
</li> | ||
</ul> | ||
|
||
<a href="mailto:contact@kuzudb.com" class="button primary">Contact Us</a> | ||
</div> | ||
</div> | ||
</div> | ||
</section> |
Oops, something went wrong.