Files
cadhub/web/src/pages/PartsPage/PartsPage.js
Kurt Hutten 5114716ee8 issues-103 Add landing page copy
Trying to "sell" the website and the concept of code-cad
2020-11-29 13:29:56 +11:00

17 lines
425 B
JavaScript

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>
)
}
export default PartsPage