Skip to content

Commit 5352cb0

Browse files
Merge pull request #23 from Aksh-Bansal-dev/patch-5
Minor changes
2 parents bb14097 + 0787e07 commit 5352cb0

8 files changed

Lines changed: 21 additions & 15 deletions

File tree

954 Bytes
Loading

frontend/src/App.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ body {
44
margin: 0;
55
padding: 0;
66
overflow-x: hidden;
7+
scroll-behavior: smooth;
78
}
89

910
:root {

frontend/src/components/Meeting/CreateButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { IconButton, IconButtonProps } from "@material-ui/core";
2-
import { Create } from "@material-ui/icons";
2+
import { Add } from "@material-ui/icons";
33
import React from "react";
44
import { createStyles, makeStyles } from "@material-ui/core/styles";
55
import MeetingForm from "./meetingStuff/MeetingForm";
@@ -35,7 +35,7 @@ const CreateButton: React.FC<CreateButtonProps> = ({ formType, ...props }) => {
3535
onClick={() => setFormOpen(true)}
3636
{...props}
3737
>
38-
<Create />
38+
<Add />
3939
</IconButton>
4040
{forms[formType]}
4141
</>

frontend/src/components/Navs/linklist.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ export const linklist = [
1414
url: "/events",
1515
loginReq: false,
1616
},
17-
{
18-
name: "Leaderboard",
19-
url: "/leaderboard",
20-
loginReq: false,
21-
},
2217
{
2318
name: "Registration",
2419
url: "/registration",

frontend/src/components/Navs/navLinks/style.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
transform: translatex(5vh);
2121
}
2222
.fourth {
23-
transform: translatex(6vh);
23+
transform: translatex(3vh);
2424
}
2525
.fifth {
26-
transform: translatex(8vh);
26+
transform: translatex(2vh);
2727
}
2828
.sixth {
29-
transform: translatex(9vh);
29+
transform: translatex(1vh);
3030
}
3131

3232
@media only screen and (max-width: 1180px) {

frontend/src/components/aboutUs/ContactUs.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ const ContactUs: React.FC = () => {
5050
BitByte
5151
</Typography>
5252
</a>
53-
<a href="#" target="_blank" className={classes.atag}>
53+
<a
54+
href="https://www.facebook.com/geeks.IIITJ/"
55+
target="_blank"
56+
className={classes.atag}
57+
>
5458
<Facebook className={classes.icon} fontSize="small" />
5559
<Typography className={classes.text} component="span">
5660
BitByte

frontend/src/components/shortcuts/index.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,21 @@ const Shortcuts: React.FC = () => {
3535
/>
3636
</a>
3737
<a
38-
href="https://www.geeksforgeeks.org"
38+
href="https://www.codechef.com/ratings/all?filterBy=Institution%3DIndian%20Institute%20of%20Information%20Technology%2C%20Design%20and%20Manufacturing%2C%20Jabalpur&order=asc&sortBy=global_rank"
3939
target="_blank"
4040
rel="noreferrer"
4141
>
4242
<img
4343
className={styles.logo}
44-
src="/images/other/ComponentTMP_0-image5.png"
44+
src="/images/other/codechef.png"
4545
alt="gfg"
4646
/>
4747
</a>
48-
<a href="https://www.codeforces.com" target="_blank" rel="noreferrer">
48+
<a
49+
href="https://codeforces.com/ratings/organization/2582"
50+
target="_blank"
51+
rel="noreferrer"
52+
>
4953
<img
5054
className={styles.logo}
5155
src="/images/other/ComponentTMP_0-image6.png"

frontend/src/pages/homePage/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ const HomePage: React.FC = () => {
2323
An Open Coding Community to explore and do a lot more with your
2424
friends and members.
2525
</span>
26-
<button className={styles.primaryBtn}>Explore Now</button>
26+
<a href="#about">
27+
<button className={styles.primaryBtn}>Explore Now</button>
28+
</a>
2729
</div>
2830
<HomeNav />
2931
<Shortcuts />

0 commit comments

Comments
 (0)