Skip to content

Commit

Permalink
updated info
Browse files Browse the repository at this point in the history
  • Loading branch information
Orisu179 committed May 12, 2024
1 parent 2c9c4e4 commit f4b6b97
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 45 deletions.
Binary file added public/profile_pic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/webImage.jpg
Binary file not shown.
4 changes: 2 additions & 2 deletions src/components/SideBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { Image } from "astro:assets";
format="webp"
width={300}
height={300}
src="/webImage.jpg"
src="/profile_pic.jpg"
alt="Profile image"
/>
</div>
Expand All @@ -32,7 +32,7 @@ import { Image } from "astro:assets";
<li><a id="projects" href="/projects">Projects</a></li>
<li><a id="blog" href="/blog/">Blog</a></li>
<li><a id="cv" href="/cv">CV</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
<li><a href="mailto:[email protected]">Email me</a></li>
</ul>
<div class="social-icons px-4 my-2 flex self-center">

Expand Down
8 changes: 8 additions & 0 deletions src/content/projects/am-I-Tired.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "Am I Tired"
description: "Runner up for Hacktech 2024, this is an AI tool to detect whether someone is tired or not"
pubDate: "May 8, 2024"
heroImage: "/post_img.webp"
---

[Here](https://devpost.com/software/am-i-tired-ait) is the devpost link. Unfortunately due the ML model being run on a local machine, the app is currently down.
31 changes: 12 additions & 19 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ const last_posts = posts.slice(0, 3);
<text class="text-lg">
Hi! I am a third year CS student at McGill University. I did an summer intership at
<a href="https://www.flojoy.io">Flojoy</a> in 2023 and went to Tokyo University in September 2023 for exchange.
This summer, I will be participating in Google Summer of Code 2024 for GRAME
</text>
</div>
<div class="mt-8">
<a class="btn" href="https://twitter.com/Orisu179/" target="_blank">Twitter</a>
<a class="btn" href="https://www.linkedin.com/in/tyler-li-9546a4190/" target="_blank">LinkedIn</a>
<a href="https://github.com/Orisu179" target="_blank" class="btn btn-outline ml-5">GitHub</a>
</div>
</div>
Expand All @@ -33,29 +34,21 @@ const last_posts = posts.slice(0, 3);
</div>

<HorizontalCard
title="Demo Project 1"
title="Am I Tried"
img="/post_img.webp"
desc="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
url="#"
desc="Runner up winner at hacktech 2024 by Caltech"
url="https://devpost.com/software/am-i-tired-ait"
badge="NEW"
/>
<div class="divider my-0"></div>
<HorizontalCard
title="Demo Project 2"
img="/post_img.webp"
desc="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
url="#"
/>
<div class="divider my-0"></div>
<HorizontalCard
title="Demo Project 3"
img="/post_img.webp"
desc="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
url="#"
badge="ANIME"
/>


<HorizontalCard
title="Amati++"
img="/post_img.webp"
desc="Project I am working on for Google Summer of Code 2024"
url="https://github.com/Orisu179/AmatiPP"
badge="WIP"
/>
<div>
<div class="text-3xl w-full font-bold mb-5 mt-10">Latest from blog</div>
</div>
Expand Down
35 changes: 11 additions & 24 deletions src/pages/projects.astro
Original file line number Diff line number Diff line change
@@ -1,45 +1,32 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import HorizontalCard from "../components/HorizontalCard.astro";
// TODO: Make sure to sync up front-page and project page projects, so I don't have to change it twice
---

<BaseLayout title = "Projects">
<div>
<div class="text-3xl w-full font-bold mb-5">Projects Header</div>
<div class="text-3xl w-full font-bold mb-5">Hackathons</div>
</div>

<HorizontalCard
title="Demo Project 1"
img="/post_img.webp"
desc="This is sample text for project 1"
url="#"
badge="NEW"
title="Am I Tried"
img="/post_img.webp"
desc="Runner up winner at hacktech 2024 by Caltech"
url="https://devpost.com/software/am-i-tired-ait"
badge="NEW"
/>
<div class="divider my-0"></div>
<HorizontalCard
title="Demo Project 2"
img="/post_img.webp"
desc="This is sample text for project 2"
url="#"
/>

<div>
<div class="text-3xl w-full font-bold mb-5 mt-10">Projects Header</div>
<div class="text-3xl w-full font-bold mb-5 mt-10">Personal Projects</div>
</div>

<HorizontalCard
title="Demo Project 3"
title="Amati++"
img="/post_img.webp"
desc="This is sample text for project 3"
url="#"
desc="Project I am working on for Google Summer of Code 2024"
url="https://github.com/Orisu179/AmatiPP"
badge="FOSS"
/>
<div class="divider my-0"></div>
<HorizontalCard
title="Demo Project 4"
img="/post_img.webp"
desc="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
url="#"
/>
<div class="divider my-0"></div>
</BaseLayout>

0 comments on commit f4b6b97

Please sign in to comment.