17 lines
425 B
JavaScript
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
|