Skip to content

Commit 59e0c07

Browse files
committed
Merge branch 'revamp'
2 parents c74176e + 4e13fa8 commit 59e0c07

File tree

12 files changed

+53
-47
lines changed

12 files changed

+53
-47
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ OKStateACM.github.io
138138
|----📄next.config.mjs (This is a file that contains custom configuration settings for next.js.)
139139
</pre>
140140

141-
# Deploying to Github.io/GitHub Pages
141+
<br/>
142+
<br/>
143+
<br/>
144+
145+
# 🚀 Deploying to Github.io/GitHub Pages
142146
This project was deployed to Github.io by going to the settings of this repository, going to the "Code and automation" section and clicking on "Pages." The "Source" was set to "GitHub Actions" where a nextjs.yml file was suggested by Github to use. Deploying webapps will differ as time goes on given that the foundation of a webapp may change.
143147

144148
<br/>
8.87 MB
Loading

src/app/components/Footer.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function Footer() {
2424
<Image
2525
className="w-24 h-24 sm:w-100 sm:h-100"
2626
src="/images/logos/ACM at OKState Logo.png" //location of logo
27-
alt="Next.js logo" //alt text of file
27+
alt="The ACM at Oklahoma State University Logo"
2828
width={400}
2929
height={400}
3030
priority
@@ -42,7 +42,7 @@ export default function Footer() {
4242
className="p-1 bg-white rounded bg-opacity-70 w-8 h-8 md:w-[50px] md:h-[50px]"
4343
aria-hidden
4444
src="/footer hyperlinks/hyperlink.png"
45-
alt="Campus Link"
45+
alt="The campus link logo"
4646
width={50}
4747
height={50}
4848
/>
@@ -60,7 +60,7 @@ export default function Footer() {
6060
className="p-1 bg-white rounded bg-opacity-70 w-8 h-8 md:w-[50px] md:h-[50px]"
6161
aria-hidden
6262
src="/footer hyperlinks/instagram.png"
63-
alt="Instagram"
63+
alt="The Instagram logo"
6464
width={50}
6565
height={50}
6666
/>
@@ -78,7 +78,7 @@ export default function Footer() {
7878
className="p-1 bg-white rounded bg-opacity-70 w-8 h-8 md:w-[50px] md:h-[50px]"
7979
aria-hidden
8080
src="/footer hyperlinks/linktree.png"
81-
alt="Linktr.ee"
81+
alt="The Linktr.ee logo"
8282
width={50}
8383
height={50}
8484
/>
@@ -96,7 +96,7 @@ export default function Footer() {
9696
className="p-1 bg-white rounded bg-opacity-70 w-8 h-8 md:w-[50px] md:h-[50px]"
9797
aria-hidden
9898
src="/images/officers/officer contacts/rounded/email.png"
99-
99+
alt="The [email protected] logo"
100100
width={50}
101101
height={50}
102102
/>
@@ -113,7 +113,7 @@ export default function Footer() {
113113
className="p-1 bg-white rounded bg-opacity-70 w-8 h-8 md:w-[50px] md:h-[50px]"
114114
aria-hidden
115115
src="/images/officers/officer contacts/rounded/linkedin.png"
116-
alt="Linked.In"
116+
alt="The Linked.In logo"
117117
width={50}
118118
height={50}
119119
/>

src/app/components/Header.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export default function Header() {
2020
return (
2121
<>
2222
{/*Header for desktops. This is hidden on smaller screens. Flex occurs on md and greater.*/}
23-
<header className="hidden py-5 bg-white border-b-4 border-orange-500 md:block">
23+
<header className="hidden py-5 bg-white border-b-4 border-orange-500 lg:block">
24+
2425
<div className="flex items-center justify-between w-full text-stone-700">
2526
<div className="text-3xl pl-50 gap-15">
2627
<a className="rounded-sm px-15 [text-decoration-color:#f97316] hover:bg-orange-300" href="/">
@@ -53,7 +54,7 @@ export default function Header() {
5354
</header>
5455

5556
{/* Header for mobile with block on small screen. Anything greater than md has this hidden.*/}
56-
<header className="block py-5 bg-white border-b-4 border-orange-500 md:hidden">
57+
<header className="block py-5 bg-white border-b-4 border-orange-500 lg:hidden">
5758
<div className="flex items-center justify-between w-full text-stone-800">
5859
<div className="pl-6 text-2xl">
5960
<a className="hover:bg-orange-100" href="/">

src/app/components/OfficerCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default function OfficerCard({ officer_title, officer_name, officer_heads
4040
*/}
4141
<Image
4242
src={officer_headshot || "/images/officers/silhouette.png"}
43-
alt="Next.js logo"
43+
alt={`Headshot of ${officer_name}` || "A silhouette of a person."}
4444
width={200}
4545
height={200}
4646
priority

src/app/favicon.ico

639 KB
Binary file not shown.

src/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const geistMono = Geist_Mono({
1212
});
1313

1414
export const metadata = {
15-
title: "ACM@OkState",
15+
title: "ACM@OKState",
1616
description: "Oklahoma State University's Computer Science Community"
1717
};
1818

src/app/officers/2022-2023-board/page.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ const officers = [
5454

5555
{
5656
officer_title: "Advisor",
57-
officer_name: "Christopher Crick",
58-
officer_headshot: "",
59-
officer_linkedin: "",
60-
officer_email: "",
61-
officer_github: "",
62-
officer_website: ""
57+
officer_name: "Dr. Crick (Cristopher Crick)",
58+
officer_headshot: "/images/officers/advisors/dr crick.png",
59+
officer_linkedin: "https://www.linkedin.com/in/christopher-crick-344939237/",
60+
officer_email: "[email protected]",
61+
officer_github: "https://github.com/chriscrick",
62+
officer_website: "cs.okstate.edu/~chriscrick"
6363
},
6464
];
6565

src/app/officers/2023-2024-board/page.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ const officers = [
5454

5555
{
5656
officer_title: "Advisor",
57-
officer_name: "Christopher Crick",
58-
officer_headshot: "",
59-
officer_linkedin: "",
60-
officer_email: "",
61-
officer_github: "",
62-
officer_website: ""
57+
officer_name: "Dr. Crick (Cristopher Crick)",
58+
officer_headshot: "/images/officers/advisors/dr crick.png",
59+
officer_linkedin: "https://www.linkedin.com/in/christopher-crick-344939237/",
60+
officer_email: "[email protected]",
61+
officer_github: "https://github.com/chriscrick",
62+
officer_website: "cs.okstate.edu/~chriscrick"
6363
},
6464
];
6565

src/app/officers/2024-2025-board/page.jsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,15 @@ const officers = [
6464

6565
{
6666
officer_title: "Advisor",
67-
officer_name: "Christopher Crick",
68-
officer_headshot: "",
69-
officer_linkedin: "",
70-
officer_email: "",
71-
officer_github: "",
72-
officer_website: ""
67+
officer_name: "Dr. Crick (Cristopher Crick)",
68+
officer_headshot: "/images/officers/advisors/dr crick.png",
69+
officer_linkedin: "https://www.linkedin.com/in/christopher-crick-344939237/",
70+
officer_email: "[email protected]",
71+
officer_github: "https://github.com/chriscrick",
72+
officer_website: "cs.okstate.edu/~chriscrick"
7373
},
7474

75+
7576
];
7677

7778
// This is called from page.js from src\app\officers\page.jsx.

0 commit comments

Comments
 (0)