Skip to content

Commit

Permalink
moved github domain
Browse files Browse the repository at this point in the history
  • Loading branch information
leonlenk committed Jun 4, 2024
1 parent 7be380e commit 1fcd1e5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
5 changes: 4 additions & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export default function Footer() {
href="https://discord.com/invite/QcU9AVW9hm"
target="_blank"
className={styles.discordLink}>
<svg className={styles.discordIcon}>
<svg
className={styles.discordIcon}
role="link"
aria-label="Click on this for a link to join ACM AI's Discord server">
<use href="sprites.svg#discordIcon" />
</svg>
</a>
Expand Down
6 changes: 5 additions & 1 deletion components/memberProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ export default function MemeberProfile({
}) {
return (
<div className={styles.memberContainer}>
<img src={picture} className={styles.picture} alt="member picture" />
<img
src={picture}
className={styles.picture}
alt={"Profile picture of " + name + " who is a " + role + " in ACM AI."}
/>
<h1 className={styles.name}>{name}</h1>
<p className={styles.text}>{pronouns}</p>
<p className={styles.text}>
Expand Down
4 changes: 2 additions & 2 deletions components/metadata.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Metadata({
}) {
return (
<NextSeo
title={title + " - ACM AI at UCLA"}
title={title + " | ACM AI at UCLA"}
description={
description ??
"We are a club at UCLA dedicated to making engineering and research in AI easy, accessiable, and fun for all!"
Expand All @@ -21,7 +21,7 @@ export default function Metadata({
type: "website",
images: images ?? [
{
url: "https://uclaacm.github.io/ai.uclaacm.com/logos/ai_motif_applied_2.png",
url: "https://uclaacm.github.io/acmai.la/logos/ai_motif_applied_2.png",
width: 990,
height: 555,
alt: "ACM AI motif",
Expand Down
10 changes: 5 additions & 5 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ export default function Page() {
<div className={styles.welcomeTextContainer}>
<h1>Welcome to</h1>
<div className={styles.logoContainer}>
<p className={styles.acmText}>acm.</p>
<p className={styles.aiText}>ai</p>
<p className={styles.bangText}>!</p>
<h1 className={styles.acmText}>acm.</h1>
<h1 className={styles.aiText}>ai</h1>
<h1 className={styles.bangText}>!</h1>
</div>
<h4>
<h2>
Leon puts the L in
<br />
Machine Leonrning
<br />
:)
</h4>
</h2>
</div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions styles/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,12 @@
margin-bottom: 3rem;

.acmText {
font-size: 100px;
font-family: "Westwood Sans 0.5", sans-serif;
}

.aiText {
font-size: 100px;
font-family: "Westwood Sans 0.5", sans-serif;
text-decoration: none;
-webkit-text-fill-color: transparent;
Expand Down

0 comments on commit 1fcd1e5

Please sign in to comment.