Skip to content

Commit

Permalink
New Wrapped Examples (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
avgupta456 authored Nov 23, 2023
1 parent 131d526 commit f1485ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions backend/src/aggregation/layer2/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

USER_WHITELIST = [
"torvalds",
"fchollet",
"ry",
"yyx990803",
"shadcn",
"sindresorhus",
]


Expand Down
26 changes: 13 additions & 13 deletions frontend/src/pages/Wrapped/SelectUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const SelectUserScreen = () => {
</div>
<div className="bg-white text-gray-700 w-full py-16">
<div className="w-full container mx-auto flex flex-col items-center">
<h1 className="text-4xl font-medium mb-4">See some Examples</h1>
<h1 className="text-4xl font-medium mb-4">See some examples</h1>
<div className="w-full flex flex-wrap justify-center items-center px-4">
{[
{
Expand All @@ -155,24 +155,24 @@ const SelectUserScreen = () => {
url: 'https://avatars.githubusercontent.com/u/1024025?v=4',
blurb: 'Creator of Linux',
},
{
name: 'Ryan Dahl',
username: 'ry',
url: 'https://avatars.githubusercontent.com/u/80?v=4',
blurb: 'Creator of Deno',
},
{
name: 'François Chollet',
username: 'fchollet',
url: 'https://avatars.githubusercontent.com/u/710255?v=4',
blurb: 'Creator of Keras',
},
{
name: 'Evan You',
username: 'yyx990803',
url: 'https://avatars.githubusercontent.com/u/499550?v=4',
blurb: 'Creator of Vue',
},
{
name: 'shadcn',
username: 'shadcn',
url: 'https://avatars.githubusercontent.com/u/124599?v=4',
blurb: 'Vercel, shadcn/ui',
},
{
name: 'Sindre Sorhus',
username: 'sindresorhus',
url: 'https://avatars.githubusercontent.com/u/170270?v=4',
blurb: 'Open-sourcer',
},
].map((user) => (
<div className="w-full md:w-1/2 lg:w-1/4 p-4" key={user.username}>
<Link to={`/wrapped/${user.username}`}>
Expand Down

0 comments on commit f1485ad

Please sign in to comment.