Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"private": true,
"dependencies": {
"antd": "^4.17.3",
"aos": "^2.3.4",
"immutability-helper": "^3.1.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
Expand Down
4 changes: 4 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
/>

<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;700;800;900&family=Poppins:wght@100;300;500;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />

<title>Codedigger</title>
</head>
Expand Down
Binary file added src/assets/Atcoder Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/CodeChef Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Codeforces Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Ellipse 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Ellipse 2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Friends Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Growth Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Landing-Page Image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Level window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Mentors Box.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Problems window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Profile window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Topic Window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Upsolve Window.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/user.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/components/ActionButton/ActionButton.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import styles from './ActionButton.module.css'
const ActionButton = ({ className, onClick, children }) => {
return (
<button className={`${styles.button} ${className}`} onClick={onClick}>
{children}
</button>
)
}

export default ActionButton
10 changes: 10 additions & 0 deletions src/components/ActionButton/ActionButton.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.button {
width: 200px;
height: 50px;
padding: 10px 50px;
background-color: #35ae9a;
border: none;
color: #fff;
font-family: 'Poppins';
font-size: 16px;
}
13 changes: 13 additions & 0 deletions src/components/HomeInfo/HomeInfo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import ActionButton from '../ActionButton/ActionButton'
import styles from './HomeInfo.module.css'
const HomeInfo = (props) => {
return (
<>
<h2 className={styles.featTitle}>{props.heading}</h2>
<p className={styles.featDesc}>{props.description}</p>
<ActionButton>Learn More</ActionButton>
</>
)
}

export default HomeInfo
35 changes: 35 additions & 0 deletions src/components/HomeInfo/HomeInfo.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.featTitle {
background-image: linear-gradient(
90deg,
#35ae9a 25.41%,
rgba(0, 135, 169, 0.6) 103.95%
);
background-clip: text;
color: transparent;
font-size: 58px;
text-align: left;
margin-bottom: 5px;
line-height: 62px;
width: 80%;
height: auto;
padding-bottom: 10px;
font-weight: 700;
}

.featDesc {
font-family: 'Poppins';
font-size: 18px;
font-weight: 300;
text-align: left;
color: #fff;
width: 70%;
}

@media screen and (max-width: 1600px) {
.featTitle {
width: 100%;
}
.featDesc {
width: 100%;
}
}
3 changes: 3 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #121212;
color: #fff;
overflow-x: hidden;
}

code {
Expand Down
Loading