diff --git a/src/AppRouters.jsx b/src/AppRouters.jsx index e4db187..d7f9c51 100644 --- a/src/AppRouters.jsx +++ b/src/AppRouters.jsx @@ -1,4 +1,4 @@ -import { Routes, Route } from 'react-router-dom'; +import {Routes, Route} from 'react-router-dom'; import UserExist from './component/authorization/UserExist'; import AuthLayout from './component/auth/AuthLayout'; @@ -23,47 +23,49 @@ import SubscriptionPage from './views/SubscriptionPage'; import OnboardPage from "./views/OnboardPage"; import AccPWDResetPage from './views/AccPWDResetPage'; import ProfileCompletePage from './views/ProfileCompletePage'; -import SubscribePage from './views/Subscribe' +import SubscribePage from './views/Subscribe' +import StartPage from "./views/StartPage"; function AppRouters() { - return ( -
- - }> - {/* auth routes wrapper */} - }> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - + return ( +
+ + }> + {/* auth routes wrapper */} + }> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + - {/* protected routes */} - }> - }> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - - - - -
- ); + {/* protected routes */} + }> + }> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + }/> + + + +
+
+ ); } export default AppRouters; diff --git a/src/component/start/Start.jsx b/src/component/start/Start.jsx new file mode 100644 index 0000000..101fe4e --- /dev/null +++ b/src/component/start/Start.jsx @@ -0,0 +1,92 @@ +import React from "react"; +import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS"; + + +export default function Start(){ + + return( + <> + +
+
+
+
+ {/*
*/} + {/*
Premium
*/} + {/*

$150

*/} + {/*

/ Monthly

*/} + {/*
    */} + {/*
  • post jobs
  • */} + {/*
  • advanced instructors search
  • */} + {/*
  • invite candidates
  • */} + {/*
  • post events
  • */} + {/*
  • cancel any time
  • */} + {/*
*/} + {/* */} + {/*
*/} +
+
+
+ +
+
+
+
+
Start with
+

Personal Website

+
    +
  • post jobs
  • +
  • advanced instructors search
  • +
  • invite candidates
  • +
  • post events
  • +
  • cancel any time
  • +
+ +
+
+
+
+ +
+
+
+
+
Start with
+

Business Website

+
    +
  • post jobs
  • +
  • advanced instructors search
  • +
  • invite candidates
  • +
  • post events
  • +
  • cancel any time
  • +
+ +
+
+
+
+ +
+
+
+ {/*
*/} + {/*
small
*/} + {/*

$80

*/} + {/*

/ Monthly

*/} + {/*
    */} + {/*
  • post jobs
  • */} + {/*
  • advanced instructors search
  • */} + {/*
  • invite candidates
  • */} + {/*
  • post events
  • */} + {/*
  • cancel any time
  • */} + {/*
*/} + {/* */} + {/*
*/} +
+
+
+
+ + + ) +} \ No newline at end of file diff --git a/src/links/siteLinks.js b/src/links/siteLinks.js index d0f4147..5d25ff9 100644 --- a/src/links/siteLinks.js +++ b/src/links/siteLinks.js @@ -3,6 +3,7 @@ const siteLinks = { help: '/help', home: '/', dash: '/dash', + start: '/start', profile_complete: '/profile-complete', product: '/product/*', contacts: '/contacts', diff --git a/src/views/StartPage.jsx b/src/views/StartPage.jsx new file mode 100644 index 0000000..512028c --- /dev/null +++ b/src/views/StartPage.jsx @@ -0,0 +1,7 @@ + +import Start from "../component/start/Start"; + + +export default function StartPage(){ + return +} \ No newline at end of file