Skip to content

Commit

Permalink
corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
azliu0 committed Oct 17, 2024
1 parent a7df960 commit aba4174
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/Project.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<a
href={project.link}
target="_blank"
target={project.link.includes("azliu.cc") ? "" : "_blank"}
class="w-full p-4 rounded-md z-[100] hover:bg-slate-50 transition-all"
>
<div class="text-xl font-bold mb-4">
Expand All @@ -26,7 +26,7 @@
{#each project.links as link, idx}
<a
href={link.href}
target="_blank"
target={link.href.includes("azliu.cc") ? "" : "_blank"}
class="text-sm text-green-500 hover:text-green-700">{link.title}</a
>
{#if idx < project.links.length - 1}
Expand Down
13 changes: 0 additions & 13 deletions src/routes/projects/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,6 @@
import type { Project as ProjectType } from "$lib/types";
const projects: Array<ProjectType> = [
{
title: "honeycomb",
desc: "co-founded yc startup. raised $1.5mm to build coding agents",
date: "Oct 2024",
link: "https://azliu.cc/logs/rise-and-fall-of-honeycomb",
links: [
{
title: "reflection",
href: "https://azliu.cc/logs/rise-and-fall-of-honeycomb",
},
],
techs: ["agents", "codegen"],
},
{
title: "twister",
desc: "canary exploit challenge based on the mersenne twister prng for HackMIT puzzle 2024",
Expand Down

0 comments on commit aba4174

Please sign in to comment.