From e9b1e2798ba469a446ace5f2eed9487f41618a80 Mon Sep 17 00:00:00 2001 From: Felix Boehm <188768+fb55@users.noreply.github.com> Date: Wed, 3 Jan 2024 13:11:28 +0000 Subject: [PATCH] chore(website): Add button to the bottom of the website --- website/src/components/HomepageTweets.tsx | 2 +- website/src/pages/index.tsx | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/website/src/components/HomepageTweets.tsx b/website/src/components/HomepageTweets.tsx index 36ea7e108c..6acc1cb560 100644 --- a/website/src/components/HomepageTweets.tsx +++ b/website/src/components/HomepageTweets.tsx @@ -163,7 +163,7 @@ function Tweet({ id, name, user, date, tweet }: TweetItem) { export function HomepageTweets() { return ( -
+

What Our Users Say

{TweetList.map((props) => ( diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index 2df18b6338..0217efa261 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -33,6 +33,14 @@ export default function Home(): JSX.Element { +
+ + Learn more about Cheerio ❯ + +
); }