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,12 +1,13 @@
import MainLayout from 'src/layouts/MainLayout'
import PartsCell from 'src/components/PartsCell'
import LandingSection from 'src/components/LandingSection'
import Seo from 'src/components/Seo/Seo'
const PartsPage = () => {
return (
<MainLayout>
<Seo title="Parts page" description="Cadhub parts page" lang="en-US" />
<LandingSection />
<PartsCell />
</MainLayout>
)