Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Jun 8, 2024
1 parent b7ef0d9 commit ea67381
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export default function Home(props: Props) {
realtime. In the meantime, you can check out my favourite set of all time{' '}
<Link
href="https://www.youtube.com/watch?v=1c4DFNy2t9E"
className="nice-underline-neutral-400 dark:nice-underline-neutral-200/50"
className="inline-block nice-underline-neutral-400 dark:nice-underline-neutral-200/50"
target="_blank"
>
on YouTube
Expand Down Expand Up @@ -344,6 +344,37 @@ export default function Home(props: Props) {
},
]}
/>

<MessageGroup
messages={[
{
key: 'experiments',
content: (
<>
I have some fun experiments on this site, some are functional things I use, others
are just me messing around.{' '}
<Link
href="/experiments"
className="nice-underline-neutral-400 dark:nice-underline-neutral-200/50"
>
Click here to see them
</Link>
.
</>
),
},
{
key: 'finally',
content: (
<>
Finally, this site is a recently started WIP. If you have any cool
ideas/interactions I should add, reach out! Would love to hear some creative
ideas.
</>
),
},
]}
/>
</motion.ul>
</main>
);
Expand Down

0 comments on commit ea67381

Please sign in to comment.