@@ -32,6 +32,7 @@ const Routes = () => {
|
|||||||
)
|
)
|
||||||
return (
|
return (
|
||||||
<Router>
|
<Router>
|
||||||
|
<Route path="/dev-ide" page={DevIdePage} name="devIde" />
|
||||||
<Route path="/policies/privacy-policy" page={PrivacyPolicyPage} name="privacyPolicy" />
|
<Route path="/policies/privacy-policy" page={PrivacyPolicyPage} name="privacyPolicy" />
|
||||||
<Route path="/policies/code-of-conduct" page={CodeOfConductPage} name="codeOfConduct" />
|
<Route path="/policies/code-of-conduct" page={CodeOfConductPage} name="codeOfConduct" />
|
||||||
<Route path="/account-recovery/update-password" page={UpdatePasswordPage} name="updatePassword" />
|
<Route path="/account-recovery/update-password" page={UpdatePasswordPage} name="updatePassword" />
|
||||||
|
|||||||
18
web/src/pages/DevIdePage/DevIdePage.js
Normal file
18
web/src/pages/DevIdePage/DevIdePage.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
import MainLayout from 'src/layouts/MainLayout'
|
||||||
|
import Seo from 'src/components/Seo/Seo'
|
||||||
|
import IdeToolbar from 'src/components/IdeToolbarNew'
|
||||||
|
|
||||||
|
const DevIdePage = () => {
|
||||||
|
return (
|
||||||
|
<MainLayout>
|
||||||
|
<Seo
|
||||||
|
title="new ide in development"
|
||||||
|
description="new ide in development"
|
||||||
|
lang="en-US"
|
||||||
|
/>
|
||||||
|
<IdeToolbar />
|
||||||
|
</MainLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DevIdePage
|
||||||
@@ -2,13 +2,11 @@ import MainLayout from 'src/layouts/MainLayout'
|
|||||||
import PartsCell from 'src/components/PartsCell'
|
import PartsCell from 'src/components/PartsCell'
|
||||||
import LandingSection from 'src/components/LandingSection'
|
import LandingSection from 'src/components/LandingSection'
|
||||||
import Seo from 'src/components/Seo/Seo'
|
import Seo from 'src/components/Seo/Seo'
|
||||||
import IdeToolbar from 'src/components/IdeToolbarNew'
|
|
||||||
|
|
||||||
const PartsPage = () => {
|
const PartsPage = () => {
|
||||||
return (
|
return (
|
||||||
<MainLayout>
|
<MainLayout>
|
||||||
<Seo title="Parts page" description="Cadhub parts page" lang="en-US" />
|
<Seo title="Parts page" description="Cadhub parts page" lang="en-US" />
|
||||||
<IdeToolbar />
|
|
||||||
<LandingSection />
|
<LandingSection />
|
||||||
<PartsCell shouldFilterPartsWithoutImage />
|
<PartsCell shouldFilterPartsWithoutImage />
|
||||||
</MainLayout>
|
</MainLayout>
|
||||||
|
|||||||
Reference in New Issue
Block a user