Files
personal-website/app/publications/page.tsx
2024-06-04 16:27:56 +02:00

41 lines
1.3 KiB
TypeScript

export default async function Page() {
return (
<div className="flex flex-col items-center">
<h1 className="text-4xl my-5">Publications (1)</h1>
<div className="my-5">
<h2 className="text-2xl">Presentations (1)</h2>
<ul>
<li>Quantum Vision Transformer</li>
</ul>
</div>
<div className="my-5">
<h2 className="text-2xl">Literature Reviews (19)</h2>
<ul>
<li>Deep Learning with Python</li>
<li>Quantun Computation and Quantum Information</li>
<li>Superintelligence</li>
<li>Deep Utopia</li>
<li>The C Programming Language</li>
<li>The Hitchhiker's Guide to the Galaxy</li>
<li>Metamorphosis of Prime Intellect</li>
<li>Critique of Pure Reason</li>
<li>Fundamentals of Astrodynamics</li>
<li>The History of the Decline and Fall of the Roman Empire</li>
<li>Aap in Pak</li>
<li>Art of War</li>
<li>Design Patterns</li>
<li>The Pragmatic Programmer</li>
<li>Algorithms</li>
<li>Negotiating for Success</li>
<li>Quantum Computing since Democritus</li>
<li>Good Strategy Bad Strategy</li>
<li>Neuroscience: Exploring the Brain</li>
</ul>
</div>
{/* <h2>Blog posts (0)</h2> */}
</div>
);
}