From b91bd7e0cd71c0389a1b04708833a5b7e948ba24 Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 10 Jul 2023 19:52:09 -0400 Subject: [PATCH] good enough author section --- ...eople_who_eat_croissants_are_dangerous.tsx | 35 ++++++++++++++++++- html/hotline-miami.tsx | 1 + 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 html/hotline-miami.tsx diff --git a/html/hot_people_who_eat_croissants_are_dangerous.tsx b/html/hot_people_who_eat_croissants_are_dangerous.tsx index 34ba167..970413a 100644 --- a/html/hot_people_who_eat_croissants_are_dangerous.tsx +++ b/html/hot_people_who_eat_croissants_are_dangerous.tsx @@ -27,12 +27,20 @@ const Wheel: Component = ({ items }, _) => (
{/*
*/} - {...items.map((i: string) =>
{i}
)} + {...items.map((item: string, i: number) => ( +
+ {item} +
+ ))}
); // i'll probably just hardcode the delays... lame but w/e +// nope +// it would be possible to have it so the final text is actually properyly selectable maybe but eh const Take: Component = ({ subjects, objects, adjectives }, _) => (
who eat
{" "} @@ -41,10 +49,35 @@ const Take: Component = ({ subjects, objects, adjectives }, _) => (
); +const Checkmark: Component = () => ( + the old, white twitter verified checkmark +); + +const Author: Component = () => ( +
+ a picture of a blonde, white woman wearing a black coat and looking at her phone. presumably phoebe bridgers +
+
+ traitor joe +
+
@​phoebe_bridgers
+
+
+); + // might want to have the final item be seperate // turned out to be unnecessary debug_render(
+