Skip to content

Commit e1ca820

Browse files
committed
slider and community guidelines
1 parent 24bafe1 commit e1ca820

5 files changed

Lines changed: 40 additions & 11 deletions

File tree

src/components/home/features.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const features = [
4444
];
4545

4646
return (
47-
<section className="relative z-10 pb-10">
47+
<section className="relative z-10">
4848
<div className="container max-w-7xl mx-auto">
4949
<div className="flex flex-wrap -mx-4 -mt-40">
5050
{features.map((item, idx) => {
@@ -67,6 +67,11 @@ const features = [
6767
})}
6868
</div>
6969
</div>
70+
<div class="container py-16">
71+
<div class="logo-stripe w-embed">
72+
73+
</div>
74+
</div>
7075
</section>
7176
);
7277
}

src/components/home/protect-enhance.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ export default function ProtectEnhance() {
4545
]
4646

4747
return (
48-
<section className="bg-sdv-dark relative py-20 lg:py-40 -mt-20" id="sdv">
49-
<div className="absolute left-0 right-0 -top-1">
48+
<section className="bg-sdv-dark relative pt-16 lg:pt-20 pb-20 lg:pb-40" id="sdv">
49+
{/* <div className="absolute left-0 right-0 -top-1">
5050
<WhiteTopWave color="#fff" />
51-
</div>
51+
</div> */}
5252
<div className="container mx-auto">
5353
<div className="flex flex-wrap justify-center -mx-4">
5454
<div className="px-4 w-full sm:w-8/12 md:w-7/12 text-center ">

src/pages/community-guidelines-slack.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const ResourcesPage = () => {
4545
SDV Slack Community Guidelines
4646
</h1>
4747
<p className="text-xl">
48-
Last Update: <i>July 2022</i>
48+
Last Update: <i>April 2023</i>
4949
</p>
5050
</div>
5151
</div>
@@ -63,8 +63,8 @@ const ResourcesPage = () => {
6363
to use.
6464
</p>
6565
<p>
66-
Our goal at the SDV is to be the most comprehensive and trusted
67-
open source platform for synthetic data. Since we started the{" "}
66+
Our goal at the SDV is to be the most comprehensive and trusted
67+
platform for synthetic data. Since we started the{" "}
6868
<a
6969
target={`_blank`}
7070
rel="noopener"
@@ -112,7 +112,7 @@ const ResourcesPage = () => {
112112
<a
113113
target={`_blank`}
114114
rel="noopener"
115-
href="https://sdv.dev/SDV/user_guides/index.html"
115+
href="https://docs.sdv.dev/sdv"
116116
>
117117
SDV User Guides
118118
</a>{" "}
@@ -130,13 +130,16 @@ const ResourcesPage = () => {
130130
initial question. The text will become the start of a new thread,
131131
and new replies will appear nested underneath it:
132132
</p>
133-
<div className="max-w-2xl">
133+
<div className="max-w-2xl mb-6">
134134
<Img
135135
fluid={data.placeholderImage.childImageSharp.fluid}
136136
alt="join our community map"
137137
loading={`lazy`}
138138
/>
139139
</div>
140+
<p>
141+
(We recognize that there may be bots or Apps that you use in other Slack spaces. Currently, we are not accepting any requests to add external Slack Apps to the SDV space.)
142+
</p>
140143
</div>
141144
<div className="text-lg my-10 post">
142145
<p className="text-3xl lg:text-4xl font-bold text-sdv-dark">
@@ -229,8 +232,7 @@ const ResourcesPage = () => {
229232
5. Keep conversations focused
230233
</p>
231234
<p>
232-
The primary focus of the SDV Slack is discussing the open source
233-
SDV software for creating and evaluating synthetic data. However,
235+
The primary focus of the SDV Slack is discussing the <a href="https://sdv.dev/">SDV software</a> for creating and evaluating synthetic data. However,
234236
we recognize that synthetic data can be useful in a variety of
235237
applications. Feel free to use the #random channel for general
236238
industry news about synthetic data. (The SDV team will not be

src/styles/global.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,26 @@ pre[class*="language-"] {
126126
}
127127
.sal-animate .img-cover:nth-of-type(odd) {
128128
@apply -translate-y-full
129+
}
130+
131+
.logo-stripe {
132+
animation: marquee 50s linear infinite;
133+
-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.776042) 20%, #000000 80%, rgba(0, 0, 0, 0) 100%);
134+
mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.776042) 20%, #000000 80%, rgba(0, 0, 0, 0) 100%);
135+
136+
width: 100%;
137+
height: 48px;
138+
background-image: url(/slider-3x.png);
139+
background-repeat: no-repeat;
140+
background-position: 0 50%;
141+
background-size: 4992px 48px;
142+
}
143+
.logo-stripe:hover {
144+
animation-play-state: paused;
145+
}
146+
147+
@keyframes marquee {
148+
to {
149+
background-position: -2496px 0%;
150+
}
129151
}

static/slider-3x.png

454 KB
Loading

0 commit comments

Comments
 (0)