From 7b1ad36aae43648426db9fe14992f1c0c323bf1a Mon Sep 17 00:00:00 2001 From: Chirag Ghosh Date: Mon, 4 Dec 2023 20:47:29 +0530 Subject: [PATCH 1/4] feat: hide events and add kwoc --- src/assets/kwoc.svg | 9 +++++++++ src/components/Navbar.astro | 11 ++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 src/assets/kwoc.svg diff --git a/src/assets/kwoc.svg b/src/assets/kwoc.svg new file mode 100644 index 0000000..d5bee58 --- /dev/null +++ b/src/assets/kwoc.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index c9ebc86..c8dde5b 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -23,10 +23,15 @@ const navbarItems: NavbarItem[] = [ link: "/team/ctms", icon: "team", }, + // { + // displayName: "Events", + // link: "/events", + // icon: "events", + // }, { - displayName: "Events", - link: "/events", - icon: "events", + displayName: "KWOC", + link: "https://kwoc.kossiitkgp.org", + icon: "kwoc", }, ]; From be511b9051ff881c65656510a76477cfe38b6f23 Mon Sep 17 00:00:00 2001 From: Chirag Ghosh Date: Mon, 4 Dec 2023 20:48:01 +0530 Subject: [PATCH 2/4] feat: version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aead573..31cf5eb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "koss-site-astro", "type": "module", - "version": "0.0.1", + "version": "1.0.0", "scripts": { "dev": "astro dev", "start": "astro dev", From e784ab57aee4e910be19f103568dac08e6ef5f60 Mon Sep 17 00:00:00 2001 From: Chirag Ghosh Date: Mon, 4 Dec 2023 20:49:19 +0530 Subject: [PATCH 3/4] fat: update README --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ff87cf9..c4168b1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # YAKW - Yet Another KOSS Website -This is the repository for development of (yet another) new and improved KOSS website. Currently deployed at https://beta.kossiitkgp.org and under heavy development. +This is the repository for development of (yet another) new and improved KOSS website. Currently deployed at https://kossiitkgp.org and always under development. This website is created using [Astro](https://astro.build). @@ -75,10 +75,9 @@ Any static assets, like images, can be placed in the `public/` directory. > Please update this documentation if you make changes to the KOSS website. Future humans will praise you. - ### Credits - “Home” icon by [Aleksey Popov](https://iconduck.com/designers/aleksey-popov) from [Evericons Project](https://iconduck.com/sets/evericons) - CC BY Zero v1.0 - “About” icon from [Google Material Icons](https://pictogrammers.com/contributor/google/) - Apache v2.0 - “Team” icon from [Microsoft](https://www.iconfinder.com/icons/8675239/ic_fluent_people_team_regular_icon) - CC BY 4.0 -- “Events” icon from [Clarity Design System](https://core.clarity.design/foundation/icons/shapes/) - MIT License \ No newline at end of file +- “Events” icon from [Clarity Design System](https://core.clarity.design/foundation/icons/shapes/) - MIT License From 33249e99fbc93d5d737c91802139a981261c0427 Mon Sep 17 00:00:00 2001 From: Chirag Ghosh Date: Mon, 4 Dec 2023 20:53:57 +0530 Subject: [PATCH 4/4] feat: updte navbar --- src/components/Navbar.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index c8dde5b..15f7393 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -29,7 +29,7 @@ const navbarItems: NavbarItem[] = [ // icon: "events", // }, { - displayName: "KWOC", + displayName: "KWOC 2023", link: "https://kwoc.kossiitkgp.org", icon: "kwoc", },