Skip to content
16 changes: 8 additions & 8 deletions frontend/src/app/(pages)/SchedulePage.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// import { ReactElement } from "react"
// // import Schedule from "../schedule/page"
import { ReactElement } from "react"
import Schedule from "../schedule/page";


// const SchedulePage = ():ReactElement => {
// return (
// <Schedule/>
// )
// }
const SchedulePage = ():ReactElement => {
return (
<Schedule/>
)
}

// export default SchedulePage
export default SchedulePage
2 changes: 1 addition & 1 deletion frontend/src/app/components/Mentors/Mentors.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// import React from "react";
import React from "react";
import { cabinetBold, cabinetExtraBold } from "@/fonts";
import UserEntity from "@/app/types/userentity";
import UserCard from "../core/UserCard";
Expand Down
11 changes: 6 additions & 5 deletions frontend/src/app/components/Navbar/NavbarMob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import fbIcon from "@/app/assets/icons/facebook.svg";
import instaIcon from "@/app/assets/icons/instagram.svg";
import linkedinIcon from "@/app/assets/icons/linkedin.svg";
import SidebarButton from "./SidebarButton";
import Schedule from "@/app/schedule/page";

const Navbar = () => {
const [isOpen, setIsOpen] = useState(false);
Expand Down Expand Up @@ -119,11 +120,11 @@ const Navbar = () => {
<nav className={`flex flex-col gap-4 ${cabinetMedium.className}`}>

<SidebarButton href="/" route="/" label="Home" icon={homeIcon} />
{/* <SidebarButton
href="/organizers"
label="Organizers"
icon={organizersIcon}
/>*/}
<SidebarButton
href="/schedule"
label="Schedule"
icon={Schedule}
/>
<SidebarButton href="/legacy" label="Legacy" icon={legacyIcon} />
<SidebarButton href="/organizers" label="Organizers" icon={organizersIcon} />

Expand Down
13 changes: 10 additions & 3 deletions frontend/src/app/components/Navbar/NavbarPC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,19 @@ const NavbarPC = () => {
</Link>
<Counter_wrapper />
</div>

<div className="flex items-center gap-[3rem]">
<div className="flex items-center gap-8 text-magnolia">
<div className="relative" ref={resourceRef}>
<div className="relative flex items-center gap-8" ref={resourceRef}>

<Link
href="/schedule"
className={`hover:text-secondary cursor-pointer text-base ${cabinetBold.className}`}
>
Schedule
</Link>

<span
className={`hover:text-secondary cursor-pointer block text-base ${cabinetBold.className}`}
className={`hover:text-secondary cursor-pointer text-base ${cabinetBold.className}`}
onClick={handleResourceClick}
>
Resources
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// import SchedulePage from "../(pages)/SchedulePage";
import SchedulePage from "../(pages)/SchedulePage";
import Announced from "../components/Announced/Announced";
import Footer from "../components/Footer/Footer";
import Navbar from "../components/Navbar/Navbar";
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/sections/Organizers/Organizers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ export default function Organizers() {



{/* <div className="flex justify-center items-center flex-col mt-20">
<div className="flex justify-center items-center flex-col mt-20">
<h1 className={`headings ${cabinetExtraBold.className} text-3xl`}>
Volunteers
</h1>
<VolunteerSection />
</div> */}
</div>

</div>
</div>
Expand Down
41 changes: 21 additions & 20 deletions frontend/src/app/sections/Organizers/team_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,7 @@ const teamsData: Array<Team> = [
},
],
},
{
id: 2,
name: "Technical Leads",
organizers: [
{
id: 201,
name: "Ishan Baidya Khadgi",
image: "https://enkoki.github.io/static_images/deerhack26/leads/IshanBaidya.jpg",
linkedin_url: "https://www.linkedin.com/in/ishan-vaidya-26a5b4285/",
position: "Technical Team",
},
{
id: 202,
name: "Aarush Dangol",
image: "https://enkoki.github.io/static_images/deerhack26/leads/AarushDangol.png",
linkedin_url: "https://www.linkedin.com/in/aarush-dangol-a5393836b/",
position: "Technical Team",
},
],
},

{
id: 3,
name: "Creative Leads",
Expand All @@ -64,6 +45,26 @@ const teamsData: Array<Team> = [
},
],
},
{
id: 2,
name: "Technical Leads",
organizers: [
{
id: 201,
name: "Ishan Baidya Khadgi",
image: "https://enkoki.github.io/static_images/deerhack26/leads/IshanBaidya.jpg",
linkedin_url: "https://www.linkedin.com/in/ishan-vaidya-26a5b4285/",
position: "Technical Team",
},
{
id: 202,
name: "Aarush Dangol",
image: "https://enkoki.github.io/static_images/deerhack26/leads/AarushDangol.png",
linkedin_url: "https://www.linkedin.com/in/aarush-dangol-a5393836b/",
position: "Technical Team",
},
],
},
{
id: 8,
name: "Documentation and Outreach Leads",
Expand Down
Loading
Loading