-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fd1ee1
commit d94bfbf
Showing
6 changed files
with
105 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
apps/website/src/app/positions/software-architect-getcraft/Content.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
'use client' | ||
|
||
import StrongLabel from '@/styled-components/Text/StrongLabel' | ||
import TargetBlankLink from '@/components/TargetBlankLink' | ||
import {HFlexBox} from '@/styled-components/Grid' | ||
|
||
import stack from './stack' | ||
|
||
import {width} from '../consants' | ||
|
||
import position from './details' | ||
|
||
const Content = () => { | ||
return ( | ||
<> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Company:</StrongLabel> | ||
<TargetBlankLink | ||
href={position.externalUrl} | ||
title={position.title} | ||
text={position.company} | ||
/> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Role:</StrongLabel> | ||
<span>{position.title}</span> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Team Size:</StrongLabel> | ||
<span>{position.teamSize}</span> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Technologies:</StrongLabel> | ||
<span>{stack.join(', ')}</span> | ||
</HFlexBox> | ||
</> | ||
) | ||
} | ||
|
||
export default Content |
17 changes: 17 additions & 0 deletions
17
apps/website/src/app/positions/software-architect-getcraft/details.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import type Position from '@/types/Position' | ||
|
||
const position = 'Software Architect' | ||
const teamSize = '10+' | ||
|
||
const getCraft: Position = { | ||
title: position, | ||
teamSize, | ||
sufix: 'software-architect-getcraft', | ||
externalUrl: 'https://www.linkedin.com/company/getcraft/', | ||
company: 'Getcraft.com', | ||
period: 'June, 2019 - July, 2020', | ||
} | ||
|
||
export {position, teamSize} | ||
|
||
export default getCraft |
37 changes: 37 additions & 0 deletions
37
apps/website/src/app/positions/software-architect-getcraft/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
'use client' | ||
|
||
import type {NextPage} from 'next' | ||
|
||
import Content from './Content' | ||
|
||
import Layout from '@/components/MainLayout' | ||
import LeftDrawer from '@/components/Drawers/LeftDrawer' | ||
import {menuItems} from '@/menu' | ||
|
||
import {drawerWidth} from '@/config/layout' | ||
import {LayoutProvider} from '@/providers' | ||
|
||
const Title = () => { | ||
return <h1>Software Architect</h1> | ||
} | ||
|
||
const PageContent = () => { | ||
return ( | ||
<LayoutProvider> | ||
<Content /> | ||
</LayoutProvider> | ||
) | ||
} | ||
|
||
const Page: NextPage = () => { | ||
return ( | ||
<Layout | ||
PageContent={PageContent} | ||
HeaderTitle={Title} | ||
drawerWidth={drawerWidth} | ||
LeftDrawer={<LeftDrawer items={menuItems} />} | ||
/> | ||
) | ||
} | ||
|
||
export default Page |
9 changes: 9 additions & 0 deletions
9
apps/website/src/app/positions/software-architect-getcraft/stack.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const stack = [ | ||
'React', | ||
'Go', | ||
'Google Cloud', | ||
'Docker', | ||
'Safari Push notifications', | ||
] | ||
|
||
export default stack |