Skip to content

Commit c9ef244

Browse files
committed
Initial commit 🎉
0 parents  commit c9ef244

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+12559
-0
lines changed

.eslintrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": [
3+
"plugin:@typescript-eslint/recommended",
4+
"plugin:prettier/recommended"
5+
],
6+
"plugins": ["prettier", "import"],
7+
"rules": {
8+
"prettier/prettier": "error"
9+
},
10+
"settings": {
11+
"import/parsers": {
12+
"@typescript-eslint/parser": [".ts", ".tsx"]
13+
},
14+
"import/resolver": {
15+
"typescript": {}
16+
}
17+
}
18+
}

.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# vercel
34+
.vercel
35+
36+
.vscode/
37+
.idea/

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"trailingComma": "all",
3+
"singleQuote": true,
4+
"semi": true,
5+
"endOfLine": "auto"
6+
}

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
```
12+
13+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14+
15+
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16+
17+
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
18+
19+
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20+
21+
## Learn More
22+
23+
To learn more about Next.js, take a look at the following resources:
24+
25+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27+
28+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29+
30+
## Deploy on Vercel
31+
32+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33+
34+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

components/Button.tsx

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
import styled, { css, keyframes } from 'styled-components';
2+
import {
3+
padding,
4+
color,
5+
variant,
6+
compose,
7+
PaddingProps,
8+
ColorProps,
9+
} from 'styled-system';
10+
11+
interface ButtonProps {
12+
variant?: 'primary' | 'secondary' | 'animated';
13+
}
14+
15+
const animation = keyframes`
16+
0% {
17+
background-position: 0 50%;
18+
}
19+
20+
20% {
21+
background-position: 35% 80%;
22+
}
23+
24+
40% {
25+
background-position: 100% 50%;
26+
}
27+
28+
60% {
29+
background-position: 70% 0;
30+
}
31+
32+
80% {
33+
background-position: 70% 0;
34+
}
35+
36+
100% {
37+
background-position: 0 50%;
38+
}
39+
`;
40+
41+
const Button = styled.button<ButtonProps & PaddingProps & ColorProps>`
42+
font-size: 1rem;
43+
line-height: 1.5rem;
44+
margin: 0;
45+
display: inline-block;
46+
font-weight: bold;
47+
align-items: center;
48+
justify-content: center;
49+
padding: 18px 50px;
50+
border-radius: 12px;
51+
cursor: pointer;
52+
border: none;
53+
transition: ease-in-out 0.15s;
54+
outline: 0;
55+
color: white;
56+
57+
${({ variant }) =>
58+
variant === 'animated' &&
59+
css`
60+
animation: ${animation} 2s linear infinite;
61+
`}
62+
${compose(padding, color)}
63+
${variant({
64+
variants: {
65+
animated: {
66+
background:
67+
'linear-gradient(200deg, rgb(255, 95, 109),rgb(255, 195, 113))',
68+
},
69+
primary: {
70+
color: 'white',
71+
backgroundColor: '#0e0e0e',
72+
'&:hover': {
73+
color: 'white',
74+
backgroundColor: 'black',
75+
transform: 'scale(1.04)',
76+
},
77+
},
78+
secondary: {
79+
color: 'black',
80+
backgroundColor: '#f5f6fa',
81+
'&:hover': {
82+
color: 'white',
83+
backgroundColor: 'black',
84+
transform: 'scale(1.04)',
85+
},
86+
},
87+
},
88+
})};
89+
`;
90+
91+
Button.defaultProps = {
92+
variant: 'primary',
93+
};
94+
95+
export default Button;

components/Card.tsx

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import styled, { css } from 'styled-components';
2+
import Grid, { GridProps } from './Grid';
3+
4+
export interface CardProps extends GridProps {
5+
selected?: boolean;
6+
}
7+
8+
const Card = styled(Grid)<CardProps>`
9+
background-color: white;
10+
padding: 30px;
11+
cursor: pointer;
12+
border-radius: 10px;
13+
font-size: 1rem;
14+
transition: 0.3s ease-in-out 0s;
15+
justify-content: start;
16+
17+
${({ selected }) =>
18+
selected &&
19+
css`
20+
box-shadow: rgb(232 235 248 / 90%) 0px 0px 60px;
21+
`}
22+
23+
:hover {
24+
box-shadow: rgb(232 235 248 / 90%) 0px 0px 60px;
25+
}
26+
`;
27+
28+
export default Card;

components/Container.tsx

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import styled from 'styled-components';
2+
import {
3+
layout,
4+
alignContent,
5+
justifyContent,
6+
justifyItems,
7+
alignItems,
8+
flexDirection,
9+
grid,
10+
textAlign,
11+
padding,
12+
margin,
13+
compose,
14+
LayoutProps,
15+
AlignItemsProps,
16+
AlignContentProps,
17+
GridProps,
18+
JustifyContentProps,
19+
JustifyItemsProps,
20+
FlexDirectionProps,
21+
PaddingProps,
22+
MarginProps,
23+
TextAlignProps,
24+
} from 'styled-system';
25+
26+
const Container = styled.div<
27+
LayoutProps &
28+
AlignContentProps &
29+
JustifyContentProps &
30+
FlexDirectionProps &
31+
PaddingProps &
32+
MarginProps &
33+
TextAlignProps &
34+
AlignItemsProps &
35+
GridProps &
36+
JustifyItemsProps
37+
>`
38+
display: flex;
39+
flex-direction: column;
40+
41+
${compose(
42+
alignContent,
43+
justifyContent,
44+
justifyItems,
45+
grid,
46+
layout,
47+
flexDirection,
48+
padding,
49+
margin,
50+
textAlign,
51+
alignItems,
52+
)};
53+
`;
54+
55+
export default Container;

components/Grid.tsx

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import React from 'react';
2+
import styled, { css } from 'styled-components';
3+
import {
4+
gridGap,
5+
padding,
6+
margin,
7+
grid,
8+
layout,
9+
justifyItems,
10+
alignItems,
11+
compose,
12+
GridProps as StyledGridProps,
13+
LayoutProps,
14+
JustifyItemsProps,
15+
AlignItemsProps,
16+
GridGapProps,
17+
PaddingProps,
18+
MarginProps,
19+
} from 'styled-system';
20+
21+
export type GridProps = GridGapProps &
22+
PaddingProps &
23+
MarginProps &
24+
StyledGridProps &
25+
LayoutProps &
26+
JustifyItemsProps &
27+
AlignItemsProps;
28+
29+
const Grid = styled.div<GridProps>`
30+
display: grid;
31+
32+
grid-template-columns: ${({ children }) =>
33+
children && css`repeat(${React.Children.toArray(children).length}, auto);`}
34+
35+
${compose(gridGap, alignItems, grid, padding, margin, layout, justifyItems)}
36+
37+
-webkit-box-align: center;
38+
align-items: center;
39+
-webkit-box-pack: end;
40+
justify-content: flex-end;
41+
`;
42+
43+
Grid.defaultProps = {};
44+
45+
export default Grid;

0 commit comments

Comments
 (0)