Skip to content

Commit

Permalink
add rbhp
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Mar 27, 2024
1 parent 837e81d commit f21a56e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions src/pages/experiments/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ export default function ExperimentsList() {
requires me to manually add users, so if you want access, contact me.
</p>
</li>

<li>
<Link href="/experiments/rekordbox-history-parser">Rekordbox History Parser</Link>
<p className="text-sm">
Rekordbox exports history in a format not so useful for copy pasting. This is a tiny
tool to fix that
</p>
</li>
</ul>
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function Home(props: Props) {
return (
<div className="space-y-6">
<main className="mx-auto grid max-w-3xl grid-cols-6 gap-6 px-6 pt-16">
<div className="col-span-4 flex h-52 flex-col justify-between overflow-hidden rounded-2xl bg-pink-200 px-8 py-8 dark:border-pink-500 dark:bg-pink-500/20 dark:shadow-none dark:backdrop-blur-2xl md:col-span-4">
<div className="col-span-4 flex h-52 flex-col justify-between overflow-hidden rounded-2xl bg-pink-200 px-8 py-8 md:col-span-4 dark:border-pink-500 dark:bg-pink-500/20 dark:shadow-none dark:backdrop-blur-2xl">
<div className="flex">
<Link
className="flex items-center justify-center space-x-1.5 rounded-full bg-pink-300 px-2 py-0.5 font-title dark:bg-pink-500/25"
Expand Down Expand Up @@ -320,7 +320,7 @@ export default function Home(props: Props) {
</div>
</div>

<div className="col-span-6 space-y-2 rounded-2xl bg-yellow-200 p-6 dark:bg-indigo-800 md:col-span-4">
<div className="col-span-6 space-y-2 rounded-2xl bg-yellow-200 p-6 md:col-span-4 dark:bg-indigo-800">
<h2 className="font-semibold">
Introduction <span className="inline dark:hidden">🌻</span>
<span className="hidden dark:inline"></span>
Expand Down Expand Up @@ -365,7 +365,7 @@ export default function Home(props: Props) {
</div>
</div>

<div className="col-span-6 space-y-4 rounded-2xl bg-lime-400 p-6 text-black dark:bg-lime-500 md:col-span-6">
<div className="col-span-6 space-y-4 rounded-2xl bg-lime-400 p-6 text-black md:col-span-6 dark:bg-lime-500">
<ContactForm />
</div>
</main>
Expand Down

0 comments on commit f21a56e

Please sign in to comment.