-
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.
project has a new page: positions/full-stack-engineer
- Loading branch information
1 parent
2241472
commit 2ab1985
Showing
7 changed files
with
135 additions
and
2 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
apps/website/src/app/positions/full-stack-engineer-collinson/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,44 @@ | ||
'use client' | ||
|
||
import StrongLabel from '@/styled-components/Text/StrongLabel' | ||
import TargetBlankLink from '@/components/TargetBlankLink' | ||
import {HFlexBox} from '@/styled-components/Grid' | ||
|
||
import stack from './stack' | ||
|
||
const Content = () => { | ||
const width = 130 | ||
|
||
return ( | ||
<> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Company:</StrongLabel> | ||
<TargetBlankLink | ||
href="https://www.collinsongroup.com/" | ||
title="Full Stack Engineer, collinsongroup.com" | ||
text="Collinsongroup.com" | ||
/> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Role:</StrongLabel> | ||
<span>Full Stack Engineer</span> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Team Size:</StrongLabel> | ||
<span>30+</span> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Technologies:</StrongLabel> | ||
<span>{stack.join(', ')}</span> | ||
</HFlexBox> | ||
<HFlexBox> | ||
<StrongLabel width={width}>Architecture</StrongLabel> | ||
<span> | ||
Microservices, Clean Architecture, Onion architecture, Micro frontends | ||
</span> | ||
</HFlexBox> | ||
</> | ||
) | ||
} | ||
|
||
export default Content |
21 changes: 21 additions & 0 deletions
21
apps/website/src/app/positions/full-stack-engineer-collinson/layout.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,21 @@ | ||
import layout from '@/components/NextjsLayout' | ||
import generateMetadata, {InternalMetadata} from '@/seo/metadata' | ||
|
||
import stack from './stack' | ||
|
||
const title = 'Full stack engineer, Collinson group' | ||
const description = `Technology stack (I'm happy to provide technical tips for each technology in the list): ${stack.join( | ||
', ', | ||
)}` | ||
|
||
const canonical = '/projects/full-stack-engineer-collinson' | ||
|
||
const props: InternalMetadata = { | ||
title, | ||
description, | ||
canonical, | ||
} | ||
|
||
export const metadata = generateMetadata(props) | ||
|
||
export default layout |
37 changes: 37 additions & 0 deletions
37
apps/website/src/app/positions/full-stack-engineer-collinson/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>Full Stack Engineer</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 |
16 changes: 16 additions & 0 deletions
16
apps/website/src/app/positions/full-stack-engineer-collinson/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,16 @@ | ||
const stack = [ | ||
'Nodejs', | ||
'GraphQL and Apollo Federation', | ||
'Datadog and Winston', | ||
'React', | ||
'Nextjs', | ||
'Vercel', | ||
'Mongodb', | ||
'kubernetes', | ||
'docker', | ||
'jest', | ||
'cerbos', | ||
'aws', | ||
] | ||
|
||
export default stack |
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,14 @@ | ||
import styled from 'styled-components' | ||
import BaseTitle from '@/styled-components/Text/Title' | ||
|
||
export interface Props { | ||
width: number | ||
} | ||
|
||
const Label = styled(BaseTitle)<Props>` | ||
font-size: 1rem; | ||
font-weight: bold; | ||
min-width: ${p => `${p.width}px`}; | ||
` | ||
|
||
export default Label |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import Title from './Title' | ||
import BoldLabel from './StrongLabel' | ||
|
||
export {Title} | ||
export {Title, BoldLabel} |
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
2ab1985
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
portfolio-website – ./apps/website
ddanailov.dev
portfolio-website-dimityrdanailov.vercel.app
portfolio-website-git-main-dimityrdanailov.vercel.app