-
-
+
+
- open source at acm at ucla
+ open source at ucla
-
- {props.children}
-
+ {props.children}
>
);
diff --git a/pages/index.tsx b/pages/index.tsx
index 34d09e1..97d871a 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -28,25 +28,22 @@ export default function Home({
title="open source at ACM at UCLA"
description="at the largest computer science community at UCLA, we care about open-source"
openGraph={{
- images: [{
- url: 'https://opensource.uclaacm.com/logo.png',
- width: 1200,
- height: 1200,
- alt: 'The ACM at UCLA logo',
- }],
+ images: [
+ {
+ url: 'https://opensource.uclaacm.com/logo.png',
+ width: 1200,
+ height: 1200,
+ alt: 'The ACM at UCLA logo',
+ },
+ ],
site_name: 'open source at ACM at UCLA',
}}
/>
-
- open source at{' '}
-
- ACM at UCLA
-
-
+
open source at UCLA
- at the largest computer science community at UCLA,
- we care about open-source.
+ maintained by ACM at UCLA,
+ the largest computer science community at UCLA
@@ -104,7 +101,8 @@ export default function Home({
featured project
what we've been doing recently...
@@ -116,15 +114,12 @@ export default function Home({
))}
see more activity{' '}
-
- on our org
-
- !
+ on our org!
-
-
+
+
);
}
@@ -141,7 +136,6 @@ export const getStaticProps: GetStaticProps = async () => {
});
const recentEvents = eventResponse.data;
-
const githubColors = await getGithubColors();
const projects = await getProjects();
diff --git a/pages/projects.tsx b/pages/projects.tsx
index 325fe79..8c49034 100644
--- a/pages/projects.tsx
+++ b/pages/projects.tsx
@@ -6,14 +6,12 @@ import ProjectCard from '../components/ProjectCard';
import SearchFilter from '../components/SearchFilter/SearchFilter';
import { getProjects, Project, GitHubColors, getGithubColors } from '../util';
-
interface ProjectsProps {
projects: Project[];
- githubColors: GitHubColors
+ githubColors: GitHubColors;
}
function Projects({ projects, githubColors }: ProjectsProps): JSX.Element {
-
// projects is a master list of all the projects that we fetched, filteredProjects is the one that we render
// to the user
const [filteredProjects, setFilteredProjects] = useState(projects);
@@ -25,38 +23,45 @@ function Projects({ projects, githubColors }: ProjectsProps): JSX.Element {
title="projects | open source at ACM at UCLA"
description="a heads-up overview of the projects that power ACM at UCLA"
openGraph={{
- images: [{
- url: 'https://opensource.uclaacm.com/logo.png',
- width: 1200,
- height: 1200,
- alt: 'The ACM at UCLA logo',
- }],
+ images: [
+ {
+ url: 'https://opensource.uclaacm.com/logo.png',
+ width: 1200,
+ height: 1200,
+ alt: 'The ACM at UCLA logo',
+ },
+ ],
site_name: 'open source at ACM at UCLA',
}}
/>
-
- projects
-
+
check out current UCLA open source projects
- a (work-in-progress) heads-up overview of the projects that power ACM at UCLA.
+ a (work-in-progress) heads-up overview of the projects that power ACM
+ at UCLA.
- a (work-in-progress) heads-up overview of the projects that power ACM
- at UCLA.
+ an overview of all open-source projects affiliated with UCLA,
+ extending beyond those managed by ACM at UCLA.
Date: Wed, 29 May 2024 19:16:06 -0700
Subject: [PATCH 3/4] Changes: - Change project title back to project - Change
project card content - Change learning card to end with an exclamation mark
---
components/Layout.tsx | 2 +-
pages/index.tsx | 7 ++-----
pages/projects.tsx | 2 +-
3 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/components/Layout.tsx b/components/Layout.tsx
index ac50c18..3f61b5b 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -19,7 +19,7 @@ function Layout(props: LayoutProps): JSX.Element {
content="width=device-width, initial-scale=1, minimum-scale=1"
/>
- open source at ucla
+ open source at acm at ucla
diff --git a/pages/index.tsx b/pages/index.tsx
index 97d871a..d56c7f8 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -52,10 +52,7 @@ export default function Home({