Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Wrapped Examples #235

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading