Skip to content

Commit cbd807b

Browse files
committed
favicon, post item, layout, cta
1 parent 0582b54 commit cbd807b

16 files changed

+175
-99
lines changed

assets/github.svg

+3
Loading

assets/sdv-blog-logo.svg

+7
Loading

src/components/Cta.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import React from 'react'
2+
import { Link } from "gatsby"
3+
4+
import GithubLogo from "../../assets/github.svg"
5+
6+
export default function Cta() {
7+
return (
8+
<section className="md:py-14 py-10" style={{
9+
background: 'linear-gradient(90deg, #03B0F2 1.57%, #01E0C9 100%)'
10+
}}>
11+
<div className="container">
12+
<div className="flex flex-wrap justify-between">
13+
<div className="max-w-sm">
14+
<p className="text-white text-3xl font-bold leading-tight mb-6 lg:mb-0">Let’s put synthetic data to work.</p>
15+
</div>
16+
<div className="flex justify-center items-center">
17+
<Link to="https://github.com/sdv-dev"
18+
className="px-6 py-3 inline-block bg-white text-sdv-heading rounded-full font-semibold leading-none"
19+
target="_blank">
20+
<GithubLogo className=" align-bottom"/> {' '}
21+
View on Github
22+
</Link>
23+
</div>
24+
</div>
25+
</div>
26+
</section>
27+
)
28+
}

0 commit comments

Comments
 (0)