Skip to content
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
2 changes: 2 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"setup-git-hook": "bash src/scripts/git-hook-init-command.sh",
"create-theme": "node src/scripts/create-theme.cjs & pnpm eslint --fix",
"create-icon": "node src/scripts/create-icon.cjs",
"optimize-image": "node src/scripts/optimize-image.cjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
Expand Down Expand Up @@ -54,6 +55,7 @@
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"sharp": "^0.33.5",
"storybook": "^8.5.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
Expand Down
256 changes: 256 additions & 0 deletions frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/images/landing/landing-1.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/images/landing/landing-2.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const Button = ({
children,
className,
}: ButtonProps) => (
<button
className={clsx(className, containerStyle({ type, style, radius, size }))}
<button
className={clsx(containerStyle({ type, style, radius, size }), className)}
onClick={onClick}
>
{leftIcon && <ButtonIcon size={size}>{leftIcon}</ButtonIcon>}
Expand Down
Loading