### TL;DR
This PR updates formatting in `Button.stories.tsx`
### What changed?
Pulled the Button heading inside `<h1>` tags onto a new line for readability and consistency.
### How to test?
Check the Button story in Storybook and ensure that the Button title displays correctly.
### Why make this change?
This small change improves the readability and consistency of code in the `Button` story.
### TL;DR
Updated paths in `tsconfig.json` and `vite.config.ts`
### What changed?
The paths for `pages` and `types` have been added to both `tsconfig.json` and `vite.config.ts` to support easier importing.
### How to test?
Check if imports using the new paths are working correctly in the code.
### Why make this change?
These changes seem to be for better organization and accessibility of different parts of the code by providing clear and quick paths for `pages` and `types`.
### TL;DR
Added a toast notification for 'Sign-in with Passkeys' feature which is still under development.
### What changed?
'The Sign-in with Passkey' button now triggers a toast notification informing the user that this feature is coming soon.
### How to test?
Click on the 'Sign-in with Passkey' button on the login page. You should see a notification with the message 'Sign-in with Passkeys is coming soon!'.
### Why make this change?
This change has been made to inform users about upcoming features in an interactive manner and ensure a smooth user experience by preventing confusion about non-functional buttons.
### TL;DR
Update font URLs in `index.css`
### What changed?
Updated font URLs from `../public/fonts/InterDisplay/` to `/fonts/InterDisplay/` for better path consistency
### How to test?
Test loading fonts and check for any font display issues
### Why make this change?
To ensure correct font loading and path consistency in the project
### TL;DR
Added `packages/backend/dev/` to `.gitignore` file.
### What changed?
`packages/backend/dev/` is now ignored from the git repository for better development practices.
### How to test?
Try adding files to `packages/backend/dev/`, they should not be tracked by git now.
### Why make this change?
To ensure unnecessary development files don’t accidentally get checked into the repository.
### TL;DR
Update description text in project transfer section to include a 'Learn more' link.
### What changed?
The description text under the 'Transfer project' section of the project settings page is updated. A 'Learn more' link is added to provide additional information about transferring projects.
### How to test?
Navigate to a project's settings page and look for the 'Transfer project' section. Verify whether the description text contains a clickable 'Learn more' link.
### Why make this change?
To provide users with more information and to make the transfer process clearer by providing relevant resources.
### TL;DR
This pull request replaces the Avatar showing user's initial with a formatted text of user's name in Project Search layout.
### What changed?
In the `ProjectSearch` file, the `Avatar` component that displayed the user's initial is replaced with a paragraph tag that now shows the user's formatted name.
### How to test?
To test the change, navigate to the Project Search page to verify that the user's formatted name is displayed instead of an `Avatar`.
### TL;DR
This change removes unused properties from a checkbox component in the `org-slug/projects/create/template` file.
### What changed?
The `value` and `onChange` properties were deleted from the checkbox that determines whether a repo is private or not. It's important to note that this checkbox is currently disabled.
### How to test?
Try to create a new project and check that there aren't any errors or behavior changes when dealing with the 'Make this repo private' checkbox.
### Why make this change?
This change enhances code readability and ensures we're not keeping unnecessary code. It does not affect functionality as the checkbox is currently disabled.