fix

pull/94/head
b38peng 2 years ago
parent 29477ccb4b
commit 1b0655c0c4
  1. 2
      components/TeamMemberCard.tsx
  2. 4
      pages/about/team.tsx
  3. 2
      pages/index.tsx

@ -51,7 +51,7 @@ export function TeamMemberCard({
const { width } = useWindowDimension();
const [isOpen, setIsOpen] = useState(false);
const handleClick = () => {
if (width <= 768) {
if (isOpen || width <= 768) {
setIsOpen(!isOpen);
}
};

@ -21,8 +21,6 @@ import websiteData from "../../content/meet-the-team/website-committee.json";
import styles from "./team.module.css";
// TODO: link News page in Elections
interface SerializedExec {
content: MDXRemoteSerializeResult;
metadata: Metadata;
@ -85,7 +83,7 @@ export default function Team({ execs, programme, website, systems }: Props) {
<Bubble>
<h2 className={styles.electionSubheading}>Elections</h2>
To find out when and where the next elections will be held, keep an
eye on on the <Link href="">News</Link>. <br />
eye on on the <Link href="/#news">News</Link>. <br />
For details on the elections, read our
<Link href="/about/constitution"> Constitution</Link>
</Bubble>

@ -68,7 +68,7 @@ export default function Home() {
))}
</div>
</section>
<section className={styles.news}>
<section className={styles.news} id="news">
<h1 className={styles.cardsHeading}>News</h1>
<p className={styles.cardsDescription}>
Updates from our execs! <br />

Loading…
Cancel
Save