-
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
Initialize footer #20
base: main
Are you sure you want to change the base?
Conversation
Visit the preview URL for this PR (updated for commit dc8e504): https://ccv-website-next--pr20-footer-4ew5pfi2.web.app (expires Wed, 13 Nov 2024 21:29:13 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 809aa2d3a6cfe026c3c7417c932015a8f1d9ec89 |
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.
pretty good~ the only thing id flag is maybe a md
style on the footer links, but other than that i think you're okay to merge 🌠
<div className="mt-8 grid grid-cols-1 lg:grid-cols-5 gap-8 xl:col-span-2"> | ||
{Object.entries(navigation).map(([_, contents]) => { | ||
return ( | ||
<div key={_}> |
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.
I personally don't love using the _
here, it's a little nitpicky, but if you're going to use the value I think you should either change the _
to key
or something or use the href
for the key value. So it could look like either of these:
<div key={key> ...
<div key={href}> ...
@@ -9,7 +13,7 @@ const LogoBrown: React.FC = () => { | |||
xmlns="http://www.w3.org/2000/svg" | |||
x="0px" | |||
y="0px" | |||
width="100%" | |||
width={width} |
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.
love this pattern!
1fr | ||
min(1000px, 100%) | ||
1fr; | ||
@apply bg-white; |
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.
what happened to the styles that got removed here? that's intentional?
</div> | ||
</div> | ||
|
||
<div className="mt-8 grid grid-cols-1 lg:grid-cols-5 gap-8 xl:col-span-2"> |
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.
hmm i was checking this out on the preview and maybe we should have a md
style here too? like maybe md:grid-cols-3
or something? it's a little awkward in the sm
to lg
transition period i think
No description provided.