-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bottle, ui): User image and introduction create, edit (#75)
* wip * feat(bottle): question card * feat(ui): set bottom sheet overlay, body wrapper zIndex * fix(bottle): page layout padding * fix(bottle): import order lint * chore(e2e): update playwright version * chore: update lockfile * feat(bottle): IntroductionV2 * feat(bottle): auto create intro * fix(eslint-config): disable no-redeclare rule * fix(ui): value prop missing bug * fix(bottle): storage integration bug * feat(ui): ImageInputs component * feat(ui): add purple600 color * feat(ui): add icon-close, icon-check white version * feat(bottle): image upload ui and guide carousel * feat(bottle): upload image using presigned url * feat(ui): add maxLength prop to Textarea component * fix(ui): use Blob over base64 * feat(bottle): profile images edit * fix(bottle): change max images to 1
- Loading branch information
Showing
71 changed files
with
4,094 additions
and
1,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import Image from 'next/image'; | ||
import Gradient from './gradient.png'; | ||
|
||
export function GradientBackground() { | ||
return ( | ||
<div | ||
style={{ | ||
width: 776, | ||
height: 613, | ||
userSelect: 'none', | ||
position: 'absolute', | ||
top: 48, | ||
zIndex: 0, | ||
left: '50%', | ||
transform: 'translateX(-50%)', | ||
}} | ||
> | ||
<Image src={Gradient} alt="gradient" priority fill aria-hidden /> | ||
</div> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.