Skip to content

Commit 0e1ef86

Browse files
authored
simplify / make explicit main page messaging (#5332)
1 parent 30ff056 commit 0e1ef86

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

content/data/datachain.yml

+12
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,15 @@
2727
.filter(C.name.glob("*.jpg"))
2828
2929
images.save("fashion-product-images")
30+
31+
- title: Version datasets without copying data
32+
description:
33+
No expensive data copies, hash calculations, or data movement. Capture and
34+
save metadata instead of data.
35+
terminal: |
36+
from datachain.lib.dc import C, DataChain
37+
38+
images = DataChain.from_storage("s3://my-storage/", type="image") \
39+
.filter(C.name.glob("*.jpg"))
40+
41+
images.save("fashion-product-images")

src/components/Home/Hero/HeroSection.tsx

+9-8
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const HeroSection = () => {
112112
)}
113113
>
114114
<h2 className="text-2xl md:text-3xl font-medium">
115-
GenAI DataChain
115+
Data management at scale
116116
</h2>
117117
<Link
118118
href={githubDatachainUrl}
@@ -139,7 +139,7 @@ const HeroSection = () => {
139139
className={cn('flex flex-col gap-4', 'lg:flex-row lg:items-center')}
140140
>
141141
<h2 className="text-2xl md:text-3xl font-medium">
142-
Data and model versioning
142+
Reproducibility with Git
143143
</h2>
144144
<Link href={githubDvcUrl} className="no-underline hover:opacity-80">
145145
<Badge className={cn('bg-dark text-light')}>
@@ -171,15 +171,16 @@ const HeroSection = () => {
171171
alt="Visualization"
172172
/>
173173
<div className={cn(styles.heroDesc, styles.datachainDesc)}>
174-
<strong>Explore</strong> and <strong>enrich</strong> annotated
175-
datasets with custom embeddings, auto-labeling, and bias removal at
176-
billion-file scale — without modifying your data.
174+
Perfect fit for <strong>processing</strong> and{' '}
175+
<strong>versioning</strong> of millions of files in cloud storages.{' '}
176+
<strong>Explore</strong> and <strong>enrich</strong> datasets. Build
177+
semantic layer for your unstructured data.
177178
</div>
178179

179180
<div className={cn(styles.heroDesc, styles.dvcDesc)}>
180-
<strong>Connect</strong> to versioned data sources and code with
181-
pipelines, <strong>track</strong> experiments,{' '}
182-
<strong>register</strong> models — all based on GitOps principles.
181+
<strong>Version</strong> and save data, <strong>connect</strong> to
182+
code, <strong>track</strong> experiments, <strong>register</strong>{' '}
183+
models — all based on GitOps principles.
183184
</div>
184185
</div>
185186
</SectionWrapper>

src/components/Home/Hero/HeroTitleSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const HeroTitleSection = ({ className }: { className?: string }) => {
3131
</em>
3232
<br />
3333
</span>
34-
for the <strong className="font-medium">GenAI</strong> era
34+
for <strong className="font-medium">AI</strong> projects
3535
</h1>
3636
<p className="text-2xl mt-4 leading-normal">
3737
Free and open source, forever.

0 commit comments

Comments
 (0)