Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .env.example

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:

steps:
- name: Checkout Git repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- name: Checkout Git repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down
1 change: 1 addition & 0 deletions components/EventCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ interface CardInterface {
header: string;
body: string;
time: string;
date: string;
img: string;
}
function EventCard({ header, body, time, img }: CardInterface) {
Expand Down
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const Footer = () => {
<a>
<Image
src={committeeData[0].logoLink}
width={100}
width={120}
height={40}
alt="Logo"
/>
Expand Down
2 changes: 0 additions & 2 deletions components/MainLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Head from 'next/head';
import React from 'react';
import Footer from './Footer';
import Navbar from './Navbar';

interface LayoutProps {
Expand All @@ -22,7 +21,6 @@ export default function MainLayout(props: LayoutProps) {
</Head>
<Navbar />
<main>{props.children}</main>
<Footer />
</>
);
}
9 changes: 5 additions & 4 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Image from 'next/image';
import Link from 'next/link';
import React, { useEffect, useState } from 'react';
import { FaTimes, FaBars } from 'react-icons/fa';
import wlogo from '../public/wlogo.webp';
import styles from '../styles/Navbar.module.scss';

interface CommitteeData {
Expand Down Expand Up @@ -45,9 +46,9 @@ const Navbar = () => {
<Link href="/">
<a className="force-child-display-block">
<Image
src={committeeData[0].logoLink}
width={106}
height={40}
src={wlogo}
width={150}
height={80}
alt="Open Source at ACM Home"
/>
</a>
Expand All @@ -60,7 +61,7 @@ const Navbar = () => {
>
<li>
<Link href="/teamPage">
<a>Team</a>
<a className={styles['nav-item-list']}>Team</a>
</Link>
</li>
<li>
Expand Down
Loading