-
Notifications
You must be signed in to change notification settings - Fork 6
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
Feature/our sponsors - made layout to match figma design #165
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,19 +121,26 @@ export default ({ comp, title }) => { | |
redirect_url={"projects"} | ||
/> | ||
</section> | ||
<section className="h-[17rem] bg-primary text-negative flex flex-col justify-evenly items-center justify-center py-16 max-lg:h-fit max-lg:gap-y-16 max-lg:py-16"> | ||
<h1 className="lg:text-5xl text-6xl mb-12"> | ||
<strong>Sponsors and Partners</strong> | ||
<section | ||
className="bg-negative text-negative flex flex-col justify-evenly py-16 max-lg:h-fit max-lg:gap-y-6 max-lg:py-16" | ||
id="sponsors" | ||
> | ||
<h1 className="lg:text-5xl text-6xl mt-10 mb-2 ml-5 text-black text-left"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar comment to the comments made in the #163. Text should be larger on mobile view. If you addressed the above comment, keep in mind that the added padding will need to be adjusted to be smaller in mobile view too. |
||
<strong>Our Sponsors</strong> | ||
</h1> | ||
<div className="flex flex-wrap gap-x-6 justify-center px-8 max-lg:px-4 max-md:px-2"> | ||
<p className="text-black text-left text-3xl lg:text-[1.7rem] ml-5 mb-10 max-lg:mb-8"> | ||
We are grateful to our sponsors who provide us with the resources | ||
and support we need at Blueprint! | ||
</p> | ||
<div className="flex flex-wrap gap-x-6 justify-center px-8 max-lg:px-4 max-md:px-2 mb-10 max-lg:-mt-4"> | ||
<img | ||
className="object-contain h-20 max-w-none mr-4" | ||
src="../assets/logos/github.png" | ||
src="../assets/logos/notion.png" | ||
alt="GitHub logo" | ||
/> | ||
<img | ||
className="object-contain h-20 max-w-none mr-4" | ||
src="../assets/logos/notion.png" | ||
src="../assets/logos/github.png" | ||
alt="Notion logo" | ||
/> | ||
</div> | ||
|
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.
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 think we could add some horizontal padding to this section (to have it align with the padding of the right section of the hero page so using
px-20
). It just helps with making the page look more professional and presentable to these NPOs as this home page could be their first time interacting with our group yknow.