diff --git a/frontend/src/app/assets/icons/schedule.svg b/frontend/src/app/assets/icons/schedule.svg new file mode 100644 index 0000000..7de7200 --- /dev/null +++ b/frontend/src/app/assets/icons/schedule.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/src/app/assets/icons/schedule.tsx b/frontend/src/app/assets/icons/schedule.tsx new file mode 100644 index 0000000..45f4fdc --- /dev/null +++ b/frontend/src/app/assets/icons/schedule.tsx @@ -0,0 +1,40 @@ +import React from "react"; + +interface Props { + height: number; + width: number; + className: string; +} + +const schedule = ({ height = 24, width = 24, className = "" }: Props) => { + return ( + + + + + + + + + ); +}; + +export default schedule; diff --git a/frontend/src/app/components/Navbar/NavbarMob.tsx b/frontend/src/app/components/Navbar/NavbarMob.tsx index ce815a8..8258279 100644 --- a/frontend/src/app/components/Navbar/NavbarMob.tsx +++ b/frontend/src/app/components/Navbar/NavbarMob.tsx @@ -11,6 +11,7 @@ import hamburgerBorder from "@/app/assets/icons/rounded.svg"; import organizersIcon from "@/app/assets/icons/organizers.svg"; import homeIcon from "@/app/assets/icons/homeIcon.svg"; +import schedulesvg from "@/app/assets/icons/schedule.svg"; import legacyIcon from "@/app/assets/icons/legacy.svg"; import judgingIcon from "@/app/assets/icons/judging-criteria.svg"; import cocIcon from "@/app/assets/icons/code-of-conduct.svg"; @@ -123,7 +124,8 @@ const Navbar = () => { diff --git a/frontend/src/app/sections/Schedule/page.tsx b/frontend/src/app/sections/Schedule/page.tsx index 8aade78..acdd0ef 100644 --- a/frontend/src/app/sections/Schedule/page.tsx +++ b/frontend/src/app/sections/Schedule/page.tsx @@ -39,7 +39,7 @@ const ScheduleSection = () => { }, { time: "3:00 PM", - title: "Tea Break/ Coffee Visit", + title: "Snacks & College Visit", venue: "Cafeteria & Courtyard", }, { @@ -227,4 +227,4 @@ const ScheduleSection = () => { export default ScheduleSection -// here just for commit zehahahahaha \ No newline at end of file +// here just for commit zehahahahaha