diff --git a/public/portal.jpeg b/public/portal.jpeg new file mode 100644 index 0000000..cde4622 Binary files /dev/null and b/public/portal.jpeg differ diff --git a/src/pages/index.tsx b/src/pages/index.tsx index d984231..24d1cb1 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -15,6 +15,23 @@ type HomeStaticProps = { export async function getStaticProps() { const projects: Project[] = [ + { + title: "Portal", + banner: "/portal.jpeg", + location: "/portal", + longDescription: "An advanced membership & event management system for my university's premier computer science organization.", + shortDescription: "Advanced membership & event management system for students", + links: [ + { + icon: "github", + location: "https://github.com/UTSA-ACM/Portal" + }, + { + icon: "external", + location: "https://portal.acmutsa.org/" + } + ] + }, { title: "Phototag", banner: "/phototag.png", @@ -79,7 +96,8 @@ const Home: NextPage = ({projects}: HomeStaticProps) => {
- WIP + WIP