Open
Conversation
madisonseal
commented
Apr 17, 2026
| @@ -2,19 +2,29 @@ type PrimaryButtonProps = { | |||
| buttonColor: string; | |||
| borderColor: string; | |||
| textColor: string; | |||
| buttonWidth?: string; | |||
| buttonHeight?: string; | |||
madisonseal
commented
Apr 17, 2026
| color: textColor}}> Join Waitlist | ||
| className=" whitespace-nowrap border flex items-center justify-center rounded-4xl tracking-normal" | ||
| style={{ | ||
| backgroundColor: buttonColor, |
Contributor
Author
There was a problem hiding this comment.
pretty straightforward, added props again
madisonseal
commented
Apr 17, 2026
| <span className="text-[#FA9E4D]"> Two </span><span className="text-[#52AEEF]"> Cents </span> | ||
| <header className="relative flex justify-between items-center gap-2 w-full bg-white px-7 py-6 z-40 md:z-60"> | ||
| <div> | ||
| <img |
Contributor
Author
There was a problem hiding this comment.
changed text + image -> svg logo
madisonseal
commented
Apr 17, 2026
| @@ -0,0 +1,43 @@ | |||
| import { Rating } from "react-simple-star-rating"; | |||
madisonseal
commented
Apr 17, 2026
|
|
||
| interface WaitListJoinProps { | ||
| imageSrc?: string; | ||
| } |
Contributor
Author
There was a problem hiding this comment.
added image src for an optional centy image ;)
madisonseal
commented
Apr 17, 2026
| <p className="text-center! font-semibold! text-2xl! md:text-4xl! tracking-normal! leading-snug! pb-6! m-0!"> | ||
| Start spending and <br /> | ||
| saving with{" "} | ||
| <span className="text-[#52AEEF] font-normal" style={{ fontFamily: '"gooddog-new", sans-serif' }}> |
Contributor
Author
There was a problem hiding this comment.
added props here
madisonseal
commented
Apr 17, 2026
| @@ -0,0 +1,84 @@ | |||
| import WaitListJoin from "../components/WaitlistJoin"; | |||
madisonseal
commented
Apr 17, 2026
| @@ -1,36 +1,20 @@ | |||
| @import "tailwindcss"; | |||
Contributor
Author
There was a problem hiding this comment.
i had a lot of issues with the index.css globally overriding my pages and my tailwind classes, i think you can restore this to the previous file as i added !important to the styling that overlaps with index.css
madisonseal
commented
Apr 17, 2026
| "react": "^19.2.4", | ||
| "react-dom": "^19.2.4", | ||
| "react-router-dom": "^7.13.1" | ||
| "react-router-dom": "^7.13.1", |
Contributor
Author
There was a problem hiding this comment.
keep my changes, here used this library for ratings
madisonseal
commented
Apr 17, 2026
| @@ -20,9 +20,7 @@ | |||
| "strict": true, | |||
| "noUnusedLocals": true, | |||
| "noUnusedParameters": true, | |||
| "erasableSyntaxOnly": true, | |||
Contributor
Author
There was a problem hiding this comment.
i don't remember doing this, i keep you can restore
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
created the ratings component. has user, desc, rating (with half ratings!), and card size!