diff --git a/components/Layout.tsx b/components/Layout.tsx
index a16a435..3f61b5b 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -13,16 +13,17 @@ function Layout(props: LayoutProps): JSX.Element {
-
-
+
+
open source at acm at ucla
-
- {props.children}
-
+ {props.children}
>
);
diff --git a/pages/index.tsx b/pages/index.tsx
index 74bf6b2..be70c55 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -28,38 +28,30 @@ 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
-
Projects →
-
- All of our projects are open-source! Literally, all of
- them.
-
-
+
Check out current UCLA open source projects!
@@ -69,7 +61,7 @@ export default function Home({
Learning →
-
Pick up the skills to write great software.
+
Pick up the skills to write great software!
@@ -91,10 +83,8 @@ export default function Home({
-
Contribute →
Make your first pull request with us!
-
@@ -104,7 +94,8 @@ export default function Home({
featured project
what we've been doing recently...
@@ -116,15 +107,12 @@ export default function Home({
))}
see more activity{' '}
-
- on our org
-
- !
+ on our org!
-
-
+
+
);
}
@@ -141,7 +129,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..3901db4 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
-
+
projects
- 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.