Files: d1965e6223c3a0dba5efd21a77f674689c9f1389 / pages / jobs.js
535 bytesRaw
1 | // Packages |
2 | import React from 'react'; |
3 | import css from 'next/css'; |
4 | |
5 | // Components/Common |
6 | import Head from '../_components/common/Head'; |
7 | import Content from '../_components/common/Content'; |
8 | import Anchor from '../_components/common/Anchor'; |
9 | |
10 | // Components/Page |
11 | import Header from '../_components/index/Header'; |
12 | import NavBar from '../_components/index/NavBar'; |
13 | import JobsContent from '../_components/jobs/Content'; |
14 | |
15 | export default () => ( |
16 | <div> |
17 | <Head title="jobs" /> |
18 | <Header /> |
19 | <NavBar /> |
20 | <JobsContent /> |
21 | </div> |
22 | ); |
23 |
Built with git-ssb-web