-
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
Showing
7 changed files
with
112 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const ContainerWrapper = styled.div` | ||
margin-left: 320px; | ||
height: 100vh; | ||
background-color: ${({ theme }) => theme.colors.gray}; | ||
@media screen and (max-width: 1260px) { | ||
margin-left: 0; | ||
} | ||
`; | ||
|
||
export const Container = styled.div``; | ||
|
||
export const ProjectContainer = styled.div` | ||
height: 100%; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
@media screen and (max-width: 1600px) { | ||
max-width: 952px; | ||
} | ||
@media screen and (max-width: 904px) { | ||
width: 364px; | ||
padding-left: 24px; | ||
padding-right: 24px; | ||
} | ||
`; | ||
|
||
export const ProjectList = styled.ul` | ||
display: flex; | ||
justify-content: space-between; | ||
@media screen and (max-width: 904px) { | ||
flex-wrap: wrap; | ||
} | ||
`; |
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,47 @@ | ||
'use client'; | ||
|
||
import CProjectCard from '@/components/c-project-card'; | ||
import CSideBar from '@/components/c-sidebar'; | ||
import CSubHeader from '@/components/c-sub-header'; | ||
import * as S from './page.styled'; | ||
|
||
export default function ProjectPage() { | ||
return ( | ||
<> | ||
<CSideBar /> | ||
<S.ContainerWrapper> | ||
<S.Container> | ||
<S.ProjectContainer> | ||
<CSubHeader title="Projects" /> | ||
<S.ProjectList> | ||
<CProjectCard | ||
title="Portfolio V2" | ||
techStack={['ts', 'react', 'next', 'docker', 'aws']} | ||
description={ | ||
'Second iteration of portfolio developed using Next.js and deployed through AWS Amplify' | ||
} | ||
imgSrc="/image/Project/portfolio.jpg" | ||
/> | ||
<CProjectCard | ||
title="Tastetionary" | ||
techStack={['ts', 'go', 'nest', 'react', 'next', 'docker', 'aws']} | ||
description={ | ||
'A lunchtime menu and restaurant assistant service, designed to streamline the menu selection process for busy working professionals by offering location-based recommendations for nearby dining options.' | ||
} | ||
imgSrc="/image/Project/taste.png" | ||
/> | ||
<CProjectCard | ||
title="With Trip" | ||
techStack={['ts', 'go', 'mysql', 'react', 'next', 'docker', 'aws']} | ||
description={ | ||
'A travel-focused expense tracking web-application that users can document trip expenses individually or as a group.' | ||
} | ||
imgSrc="/image/Project/trip2.png" | ||
/> | ||
</S.ProjectList> | ||
</S.ProjectContainer> | ||
</S.Container> | ||
</S.ContainerWrapper> | ||
</> | ||
); | ||
} |
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
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