From 140d45150be290fc7d3eace63e678f5a5b52c330 Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 10 Jul 2023 22:37:47 -0400 Subject: [PATCH] hooray enough! --- ...eople_who_eat_croissants_are_dangerous.tsx | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/html/hot_people_who_eat_croissants_are_dangerous.tsx b/html/hot_people_who_eat_croissants_are_dangerous.tsx index 970413a..7dd8b68 100644 --- a/html/hot_people_who_eat_croissants_are_dangerous.tsx +++ b/html/hot_people_who_eat_croissants_are_dangerous.tsx @@ -5,7 +5,7 @@ import { Component } from "./jsx/jsx-runtime.ts"; const peopleify = (...people: string[]): string[] => people.map(p => `${p} people`); -const animation_length = (num_items: number): number => num_items / 5; +const animation_length = (num_items: number): number => /*num_items / 5*/ 3; const wheel_style = (num_items: number): string => `transform: translateY(calc(2rem * -${num_items})); animation: ${animation_length( @@ -73,6 +73,28 @@ const Author: Component = () => ( ); +const Info: Component = () => ( +
+ 10:02 PM ·{" "} + Feb 20, 2021 ·{" "} + Twitter for iPhone +
+); + +const Stats: Component = () => ( +
+ + 3,228 Retweets + + + 803 Quote Tweets + + +
+); + // might want to have the final item be seperate // turned out to be unnecessary debug_render( @@ -127,5 +149,10 @@ debug_render( "dangerous", ]} /> + +
+ +
+
);