diff --git a/src/components/data.js b/src/components/data.js index db6aae4..6d9a8f8 100644 --- a/src/components/data.js +++ b/src/components/data.js @@ -40,15 +40,6 @@ export const officerList = [ image: "../images/officers_2022/abhinav.jpg", bio: "Hey guys, this year, I hope to help lead the partnerships the club has with other organizations. As an officer and member of the academic affairs committee in student government, I hope to act and eventually help grow the connection between CSC and the Student government.", }, - { - name: "Hina Sekine", - title: "Public Relations Manager", - linkedIn: "", - email: "his38@pitt.edu", - image: "../images/officers_2022/hina.jpg", - bio: "Hello all! I’m Hina Sekine, a CS major at Pitt! I have a confession to make, despite CS being a central part of my life since I entered university, I despise coding itself. I believe that it’s a crime we’re forced against our will to use computers and code in the year 2022.", - }, - { name: "Minhal Khan", title: "Public Relations Manager", diff --git a/src/downloads/gbm-fall-2022.pdf b/src/downloads/gbm-fall-2022.pdf new file mode 100644 index 0000000..68ce26b Binary files /dev/null and b/src/downloads/gbm-fall-2022.pdf differ diff --git a/src/pages/about.js b/src/pages/about.js index 7f2f986..fd67d1b 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -3,7 +3,7 @@ import { officerList } from "../components/data"; import { hotjar } from "react-hotjar"; import ReactGA from "react-ga"; import { motion } from "framer-motion"; -import SpringReport from "../downloads/Pitt_CSC_Spring_Report.pdf"; +import FallReport from "../downloads/gbm-fall-2022.pdf"; import Layout from "../layouts/layout"; import TeamCard from "../components/TeamCard"; @@ -119,11 +119,11 @@ const AboutPage = () => { - See Spring Report + Initiatives - Fall 2022
diff --git a/src/pages/index.js b/src/pages/index.js index aae4af2..87c338e 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -3,6 +3,7 @@ import { graphql } from "gatsby"; import { Link } from "gatsby"; import Lottie from "react-lottie"; import { StaticImage } from "gatsby-plugin-image"; +import { getAcademicYear } from "../utils/dates"; import animationData from "../animations/pittcscLogoAnimation.json"; @@ -19,7 +20,7 @@ import { faVideo, faEnvelope } from "@fortawesome/free-solid-svg-icons"; import { motion, useAnimation } from "framer-motion"; import { hotjar } from "react-hotjar"; import ReactGA from "react-ga"; -import SpringReport from "../downloads/Pitt_CSC_Spring_Report.pdf"; +import FallReport from "../downloads/gbm-fall-2022.pdf"; import { useInView } from "react-intersection-observer"; @@ -198,7 +199,7 @@ const IndexPage = ({ data }) => { variants={text} className="relative z-10 text-lg font-light xl:text-xl" > - 2021-2022 SCHOOL YEAR + {getAcademicYear()} SCHOOL YEAR { animate={controls} whileHover={{ scale: 1.1 }} whileTap={{ scale: 0.9 }} - href={SpringReport} + href={FallReport} target="_blank" className="absolute z-20 -bottom-4 inline-block" >
@@ -522,7 +523,7 @@ const IndexPage = ({ data }) => {