Skip to content

Commit 49203fc

Browse files
authored
Merge pull request #1 from CodeCrew-CodeSchool/webapp
Webapp
2 parents 6a309cf + 0f983e6 commit 49203fc

File tree

17 files changed

+117
-82
lines changed

17 files changed

+117
-82
lines changed

design/assets/wireframe_paper.png

8.52 MB
Loading

design/info.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
initial application is going to be a web app, placebo frontend admin panel.
2+
3+
Gonna connect it with Leetcode Api..?
4+
5+
[Leetcode Api](https://github.com/alfaArghya/alfa-leetcode-api)
6+

webapp/public/favicon.ico

-3.78 KB
Binary file not shown.

webapp/public/logo192.png

-5.22 KB
Binary file not shown.

webapp/public/logo512.png

-9.44 KB
Binary file not shown.

webapp/public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "CodeCrew",
3+
"name": "CodeCrew Leetcode Site",
44
"icons": [
55
{
66
"src": "favicon.ico",

webapp/src/App.css

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +0,0 @@
1-
.App {
2-
text-align: center;
3-
}
4-
5-
.App-logo {
6-
height: 40vmin;
7-
pointer-events: none;
8-
}
9-
10-
@media (prefers-reduced-motion: no-preference) {
11-
.App-logo {
12-
animation: App-logo-spin infinite 20s linear;
13-
}
14-
}
15-
16-
.App-header {
17-
background-color: #282c34;
18-
min-height: 100vh;
19-
display: flex;
20-
flex-direction: column;
21-
align-items: center;
22-
justify-content: center;
23-
font-size: calc(10px + 2vmin);
24-
color: white;
25-
}
26-
27-
.App-link {
28-
color: #61dafb;
29-
}
30-
31-
@keyframes App-logo-spin {
32-
from {
33-
transform: rotate(0deg);
34-
}
35-
to {
36-
transform: rotate(360deg);
37-
}
38-
}

webapp/src/App.js

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1-
import logo from './logo.svg';
21
import './App.css';
3-
2+
import Header from "./components/Header/Header"
3+
import LeetcodeProblems from "./components/LeetcodeProblems/LeetcodeProblems"
44
function App() {
55
return (
66
<div className="App">
7-
<header className="App-header">
8-
<img src={logo} className="App-logo" alt="logo" />
9-
<p>
10-
Edit <code>src/App.js</code> and save to reload.
11-
</p>
12-
<a
13-
className="App-link"
14-
href="https://reactjs.org"
15-
target="_blank"
16-
rel="noopener noreferrer"
17-
>
18-
Learn React
19-
</a>
20-
</header>
7+
<Header></Header>
8+
<LeetcodeProblems></LeetcodeProblems>
219
</div>
2210
);
2311
}

webapp/src/assets/CodeCrewLogo.png

41.3 KB
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.header-container {
2+
display: flex;
3+
justify-content: center; /* Center the content horizontally */
4+
align-items: center; /* Center the content vertically */
5+
height: 100px; /* Set a fixed height */
6+
border-bottom: 2px solid black;
7+
}
8+
9+
.logo {
10+
width: 500px; /* Set width as desired */
11+
height: auto; /* Maintain aspect ratio */
12+
}

0 commit comments

Comments
 (0)