From d52ca53716c20eb9792cc151ec5c23fd8d55c2ae Mon Sep 17 00:00:00 2001 From: detective-sokka Date: Sat, 16 Sep 2023 17:38:28 -0400 Subject: [PATCH 1/2] #37 #38: Reordered buttons and added SocMedia buttons --- app/page.tsx | 36 ++++++++++++++++++++++++++++-------- assets/images/meetup.svg | 5 +++++ assets/images/x.svg | 5 +++++ changelog.md | 9 ++++++--- 4 files changed, 44 insertions(+), 11 deletions(-) create mode 100644 assets/images/meetup.svg create mode 100644 assets/images/x.svg diff --git a/app/page.tsx b/app/page.tsx index a50ae98..15f3733 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -3,13 +3,15 @@ import Link from "next/link"; import Image from "next/image"; import Discord from "@/assets/images/Discord.svg"; import LinkedIn from "@/assets/images/LinkedIn.svg"; +import X from "@/assets/images/x.svg"; +import Meetup from "@/assets/images/meetup.svg"; const buttons = [ { id: 1, - title: "Feature Sign Up", - link: "/features", - color: "bg-yellow-400", + title: "About", + link: "/about", + color: "bg-[#EA891D]", }, { id: 2, @@ -19,21 +21,27 @@ const buttons = [ }, { id: 3, - title: "Code & Coffee Chapters", + title: "Chapters", link: "/chapters", color: "bg-rose-600", }, { id: 4, - title: "Photos from past events", + title: "Photos", link: "/pastEvents", color: "bg-cyan-500", }, { id: 5, - title: "About", - link: "/about", - color: "bg-[#EA891D]", + title: "Features", + link: "/features", + color: "bg-yellow-400", + }, + { + id: 6, + title: "Feedback", + link: "/#", + color: "bg-[#A73C93]", }, ]; @@ -50,6 +58,18 @@ const social_media = [ link: "https://www.linkedin.com/company/boston-code-and-coffee", image: LinkedIn, }, + { + id : 3, + title: "X", + link: "/#", + image: X, + }, + { + id : 4, + title: "Meetup", + link: "https://www.meetup.com/boston-code-and-coffee/", + image: Meetup, + }, ]; export default function Home() { diff --git a/assets/images/meetup.svg b/assets/images/meetup.svg new file mode 100644 index 0000000..6031f7a --- /dev/null +++ b/assets/images/meetup.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/images/x.svg b/assets/images/x.svg new file mode 100644 index 0000000..5b77920 --- /dev/null +++ b/assets/images/x.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/changelog.md b/changelog.md index ae920ea..b0541c4 100644 --- a/changelog.md +++ b/changelog.md @@ -24,13 +24,16 @@ N/A --- +## [1.1.2] - 2023-09-16 +### Added +- New Feedback button and Social media buttons for X and Meetup +### Updated +- Reordered main page buttons + ## [1.1.1] - 2023-08-24 ### Updated - Updated Nicole Lyu's picture in Organizers page - - - ## [1.1.0] - 2023-08-20 ### Added From afd22e868c4ff9e97958f258a455ba2e8c665c0c Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Mon, 9 Oct 2023 18:18:12 -0400 Subject: [PATCH 2/2] avoid "sh: next: command not found" --- README.md | 1 + changelog.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index e02181f..d7f3159 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,6 @@ First, run the development server: ```bash +npm i next npm run dev ``` diff --git a/changelog.md b/changelog.md index b0541c4..4c271ab 100644 --- a/changelog.md +++ b/changelog.md @@ -23,6 +23,9 @@ N/A --> --- +## [1.1.3] - 2023-10-09 +### Added +- Instructions in README to install Next.js ## [1.1.2] - 2023-09-16 ### Added