issues-103 Add landing page copy

Trying to "sell" the website and the concept of code-cad
This commit is contained in:
Kurt Hutten
2020-11-29 11:05:44 +11:00
parent e1eec0f738
commit 5114716ee8
10 changed files with 402 additions and 36 deletions

View File

@@ -1,5 +1,20 @@
const Svg = ({ name, className: className2, strokeWidth = 2 }) => {
const svgs = {
'arrow-down': (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={strokeWidth}
d="M19 14l-7 7m0 0l-7-7m7 7V3"
/>
</svg>
),
'arrow-left': (
<svg
xmlns="http://www.w3.org/2000/svg"