Skip to content

Commit

Permalink
chore(website): Add button to the bottom of the website
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Jan 3, 2024
1 parent aa45360 commit e9b1e27
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/HomepageTweets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function Tweet({ id, name, user, date, tweet }: TweetItem) {

export function HomepageTweets() {
return (
<div className="container padding-bottom--xl">
<div className="container">
<h2 className="text--center">What Our Users Say</h2>
<div className="row">
{TweetList.map((props) => (
Expand Down
8 changes: 8 additions & 0 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ export default function Home(): JSX.Element {
<HomepageFeatures />
<HeadlineSponsors />
<HomepageTweets />
<div className="container">
<Link
className="button button--primary button--block margin-vert--lg padding-vert--md"
to="/docs/intro"
>
Learn more about Cheerio ❯
</Link>
</div>
</Layout>
);
}

0 comments on commit e9b1e27

Please sign in to comment.