Skip to content

Commit 1f0b048

Browse files
committed
fix: clear out hardcoded papers data in RecentPapers component
1 parent 038ea71 commit 1f0b048

1 file changed

Lines changed: 2 additions & 26 deletions

File tree

app/papers.tsx

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,8 @@ import Link from "next/link";
22
import { FiArrowUpRight } from "react-icons/fi";
33

44
export default function RecentPapers() {
5-
const papers = [
6-
{
7-
date: "2024.10.12",
8-
title: "Memory-Safe Concurrency in Systems Languages",
9-
description:
10-
"Analysis of ownership models in low-latency environments and their impact on throughput.",
11-
category: "Systems",
12-
link: "#",
13-
},
14-
{
15-
date: "2024.08.24",
16-
title: "Distributed Consensus via Optimized Graph Topologies",
17-
description:
18-
"Novel approaches to minimizing message passing in multi-node state machine replication.",
19-
category: "Networking",
20-
link: "#",
21-
},
22-
{
23-
date: "2024.06.05",
24-
title: "Latency Bounds in Modern JIT Compilers",
25-
description:
26-
"A comparative study on optimization bailouts and their effect on real-time execution.",
27-
category: "Compilers",
28-
link: "#",
29-
},
30-
];
5+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
6+
const papers: any[] = [];
317

328
return (
339
<section className="py-32 bg-slate-50 dark:bg-slate-900/30 border-b border-slate-200 dark:border-slate-800">

0 commit comments

Comments
 (0)