Skip to content

fix: fixed a deadlink on the users showcase page #4007

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 website/src/pages/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const inter = Inter({ subsets: ['latin'] });
export interface UsersProps {}

const Users: React.FC<UsersProps> = props => {
const editUrl = `${siteConfig.repoUrl}/edit/master/website/src/users.ts`;
const editUrl = `${siteConfig.repoUrl}/edit/main/website/src/users.ts`;
const showcase = users.map(user => (
<a
href={user.infoLink}
Expand Down Expand Up @@ -67,7 +67,7 @@ const Users: React.FC<UsersProps> = props => {
href={editUrl}
target="_blank"
rel="noopener noreferrer"
className="flex items-center justify-center max-w-sm px-8 py-3 mx-auto text-base text-xl font-medium leading-6 text-white transition duration-150 ease-in-out bg-blue-600 border border-transparent rounded-md hover:bg-blue-500 focus:outline-none focus:border-blue-700 focus:ring focus:ring-blue md:py-4 md:text-lg md:px-10"
className="flex items-center justify-center max-w-sm px-8 py-3 mx-auto text-base font-medium leading-6 text-white transition duration-150 ease-in-out bg-blue-600 border border-transparent rounded-md hover:bg-blue-500 focus:outline-none focus:border-blue-700 focus:ring focus:ring-blue md:py-4 md:text-lg md:px-10"
>
Add your company
</a>
Expand Down