Skip to content

Commit f21db48

Browse files
authored
Merge pull request #75 from lugvitc/master
Merging Master to deployment
2 parents 0ff0d74 + 3bfd526 commit f21db48

File tree

40 files changed

+952
-222
lines changed

40 files changed

+952
-222
lines changed

src/App.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
html {
22
background-color: #000000;
3-
cursor: url("./images/icons/cursor.png"), auto;
3+
/* cursor: url("./images/icons/cursor.png"), auto; */
44
}
5-
.custom-tux {
5+
/* .custom-tux {
66
cursor:
77
url("./path/to/custom-cursor.png") 25 25,
88
auto;
9-
}
9+
} */

src/App.jsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ import HackersHorizon from "./pages/events/event/hackers-horizon/HackersHorizon"
3232
import LinuxInstallationBooth2 from "./pages/events/event/linux-installation-booth2/LinuxInstallationBooth2";
3333
import Password2023 from "./pages/events/event/password2023/Password2023";
3434
import CyberOday2 from "./pages/events/event/cod2/Cod2";
35+
import Password2024 from "./pages/events/event/password2024/Password2024";
36+
import FOSSit2024 from "./pages/events/event/fossit2024/FOSSit2024.jsx";
3537

3638
import Chapter_1 from "./pages/learn/chapters/Chapter_1";
3739
import Chapter_2 from "./pages/learn/chapters/Chapter_2";
@@ -60,6 +62,8 @@ export const paths = {
6062
linuxInstallationBooth2: "/linuxInstallationBooth2",
6163
password2023: "/password2023",
6264
cyberOday2: "/cyberOday2",
65+
password2024: "/password2024",
66+
fossit2024: "/fossit2024",
6367

6468
cli: "/cli",
6569
chapter_1: "/chapter_1",
@@ -145,6 +149,14 @@ const router = createHashRouter([
145149
path: "/cyberOday2",
146150
element: <CyberOday2 />,
147151
},
152+
{
153+
path: "/password2024",
154+
element: <Password2024 />,
155+
},
156+
{
157+
path: "/fossit2024",
158+
element: <FOSSit2024 />,
159+
},
148160
{
149161
path: "/cli",
150162
element: <Cli />,

src/components/footer/Footer.jsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,6 @@ function Footer() {
1414
</span>
1515
</div>
1616
<div class="flex justify-center ">
17-
<a
18-
target="_blank"
19-
href="https://discord.gg/ApShC247me"
20-
class="mr-6 text-gray-600 dark:text-gray-400 hover:text-blue-400"
21-
>
22-
<img
23-
src={Discord}
24-
alt=""
25-
className="h-6 w-6 hover:bg-blue-600 rounded-md"
26-
/>
27-
</a>
2817
<a
2918
target="_blank"
3019
href="https://www.instagram.com/lugvitc/"

src/components/navbar/MainNavbar.jsx

Lines changed: 42 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -46,55 +46,55 @@ const navListMenuItems = [
4646
{
4747
title: "Forums",
4848
description: "Linux Club's own forum and discussion area.",
49-
link: "https://forum.lugvitc.org/",
49+
link: "https://forum.lugvitc.net/",
5050
},
5151
{
5252
title: "Cloud",
5353
description:
5454
"Linux Club's own online management tool to manage club's activities",
55-
link: "https://cloud.lugvitc.org/",
55+
link: "https://cloud.lugvitc.net/",
5656
},
5757
];
5858

5959
const navListMenuItemsAboutUs = [
60-
{
61-
title: "Gallery",
62-
description: "Sharing our experiences.",
63-
icon: SquaresPlusIcon,
64-
link: "#/gallery",
65-
},
60+
// {
61+
// title: "Gallery",
62+
// description: "Sharing our experiences.",
63+
// icon: SquaresPlusIcon,
64+
// link: "#/gallery",
65+
// },
6666
{
6767
title: "About Us",
6868
description: "Meet and learn about our dedication",
6969
icon: UserGroupIcon,
7070
link: "#/about",
7171
},
72-
{
73-
title: "Blog",
74-
description: "Find the perfect solution for your needs.",
75-
icon: Bars4Icon,
76-
link: "#/blogs",
77-
},
72+
// {
73+
// title: "Blog",
74+
// description: "Find the perfect solution for your needs.",
75+
// icon: Bars4Icon,
76+
// link: "#/blogs",
77+
// },
7878
{
7979
title: "Members",
8080
description: "Amazing group of inquisitive people.",
8181
icon: UserGroupIcon,
8282
link: "#/members",
8383
},
84-
{
85-
title: "Leaderboard",
86-
description: "leaderboard for club members.",
87-
icon: TrophyIcon,
88-
link: "#/leaderboard",
89-
},
84+
// {
85+
// title: "Leaderboard",
86+
// description: "leaderboard for club members.",
87+
// icon: TrophyIcon,
88+
// link: "#/leaderboard",
89+
// },
9090
];
9191

9292
const navListMenuItemsSupport = [
9393
{
9494
title: "Support",
9595
description: "Reach out to us for assistance or inquiries on our Forums",
9696
icon: GlobeAmericasIcon,
97-
link: "https://forum.lugvitc.org/",
97+
link: "https://forum.lugvitc.net/",
9898
},
9999
{
100100
title: "Contact",
@@ -348,6 +348,11 @@ const navListItems = [
348348
icon: CubeTransparentIcon,
349349
link: "#/events",
350350
},
351+
{
352+
label: "~cd hub",
353+
icon: CodeBracketSquareIcon,
354+
link: "http://hub.lugvitc.net/",
355+
}
351356
];
352357

353358
function NavList() {
@@ -372,9 +377,23 @@ function NavList() {
372377
</Typography>
373378
// </Link>
374379
))}
375-
<NavListMenu />
380+
{/* <NavListMenu /> */}
376381
<NavListMenuAboutUs />
377-
<NavListMenuSupport />
382+
{/* <NavListMenuSupport /> */}
383+
<Typography
384+
as="a"
385+
href={"/#/contact"}
386+
variant="small"
387+
color="gray"
388+
className="font-light font-space text-xs text-white"
389+
>
390+
<MenuItem className="flex items-center gap-2 lg:rounded-full hover:bg-[#1f2937]">
391+
{React.createElement(PhoneIcon, {
392+
className: "h-[18px] w-[18px] text-white",
393+
})}{" "}
394+
<span className="text-white "> ~cd contact</span>
395+
</MenuItem>
396+
</Typography>
378397
</ul>
379398
);
380399
}

0 commit comments

Comments
 (0)