Skip to content

Commit

Permalink
feat: update new anime and projects
Browse files Browse the repository at this point in the history
  • Loading branch information
cubedhuang committed Sep 9, 2023
1 parent 3611656 commit 5398ca8
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 19 deletions.
Binary file added public/images/anime/ai.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/images/anime/beastars.png
Binary file not shown.
Binary file removed public/images/anime/demon.jpg
Binary file not shown.
Binary file removed public/images/anime/komi.jpg
Binary file not shown.
1 change: 1 addition & 0 deletions public/images/icons/socketio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/projects/debate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 6 additions & 18 deletions src/data/anime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ export interface AnimeInfo {
}

export const anime: AnimeInfo[] = [
{
name: "Oshi No Ko",
description: "",
image: "/images/anime/ai.jpg",
url: "https://anilist.co/anime/150672/Oshi-no-Ko/"
},
{
name: "Kaguya-sama: Love is War",
description: "",
image: "/images/anime/kaguya.png",
url: "https://anilist.co/anime/101921/Kaguyasama-wa-Kokurasetai-Tensaitachi-no-Renai-Zunousen/"
},
{
name: "Mairimashita! Iruma-kun",
description: "Demon school!",
image: "/images/anime/demon.jpg",
url: "https://anilist.co/anime/107693/Mairimashita-Irumakun/"
},
{
name: "Tokyo Ghoul",
description: "Cannibalism.",
Expand All @@ -30,12 +30,6 @@ export const anime: AnimeInfo[] = [
image: "/images/anime/jujutsu.jpg",
url: "https://anilist.co/anime/113415/Jujutsu-Kaisen/"
},
{
name: "Komi Can't Communicate",
description: "",
image: "/images/anime/komi.jpg",
url: "https://anilist.co/anime/133965/Komisan-wa-Komyushou-desu/"
},
{
name: "Saiki K.",
description: "The world's unhappiest man.",
Expand Down Expand Up @@ -83,11 +77,5 @@ export const anime: AnimeInfo[] = [
description: "Puberty syndrome?",
image: "/images/anime/mai.jpg",
url: "https://anilist.co/anime/101291/Rascal-Does-Not-Dream-of-Bunny-Girl-Senpai/"
},
{
name: "Beastars",
description: "Carnivores.",
image: "/images/anime/beastars.png",
url: "https://anilist.co/anime/107660/BEASTARS/"
}
];
25 changes: 25 additions & 0 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,31 @@ export const projects: ProjectInfo[] = [
}
]
},
{
name: "debating.live",
description:
"Real-time platform for timer sharing, speech tracking, and more for Public Forum debate.",
image: "/images/projects/debate.png",
url: "https://debating.live",
stack: [
{
name: "TailwindCSS",
icon: "tailwindcss"
},
{
name: "Socket.IO",
src: "/images/icons/socketio.svg"
},
{
name: "SvelteKit",
icon: "svelte"
},
{
name: "TypeScript",
icon: "ts"
}
]
},
{
name: "Boids: Flocking Simulation",
description:
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Projects() {
width={120}
height={120}
alt={name}
className="w-full h-full rounded-[25%]"
className="w-full h-full rounded-[25%] bg-[#242938]"
quality={100}
/>
<div className="absolute mb-1 px-2 py-1 text-white text-sm bg-slate-900 opacity-0 group-hover:opacity-100 transition pointer-events-none bottom-full rounded-lg w-max">
Expand Down

0 comments on commit 5398ca8

Please sign in to comment.