-
Notifications
You must be signed in to change notification settings - Fork 0
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
secondary text research #28
Conversation
return <div>research comps here</div>; | ||
return ( | ||
<div> | ||
{" "} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{" "} | |
src/app/research/page.tsx
Outdated
return ( | ||
<div> | ||
{" "} | ||
<SecondaryText />{" "} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<SecondaryText />{" "} | |
<SecondaryText /> |
@@ -0,0 +1,9 @@ | |||
const SecondaryText = () => { | |||
return ( | |||
<p className="align-center text-center font-seasons text-[30px]"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<p className="align-center text-center font-seasons text-[30px]"> | |
<p className="text-center font-seasons text-[30px]"> |
Use flex justify-center and don't hardcode a text value, just use a tailwind class that looks close enough for now. we'll worry about responsiveness later
Link your issue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
solve your merge conflict too, please ping me and minh in the help channel if you need help
const SecondaryText = () => { | ||
return ( | ||
<p className="align-center flex justify-center text-center font-seasons text-xl"> | ||
Click on these for more information |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this text does not accurately match what the issue requests for. the text should be 'Click on these for access to more resources! '
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Stanley Lew <[email protected]>
I matched the font size to the best of my ability :)