Skip to content
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

uncommenting partners section and updating to imc #10

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions components/homepage/partnerSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,6 @@ export default function PartnerSection() {
alt="IMC logo"
/>
</a>

<a href="https://stripe.com/" alt="Stripe">
<img
width="250"
src="/images/stripe-logo.svg"
className="center partner-logos"
alt="Stripe logo"
/>
</a>
<a href="https://www.facebook.com/" alt="Facebook">
<img
width="150"
src="/images/fb-logo.svg"
className="center partner-logos"
alt="Facebook logo"
/>
</a>
</div>
<Row>
<div className="center partner-button">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.3.1",
"node-sass": "^5.0.0",
"node-sass": "^9.0.0",
"prettier": "^2.1.2",
"styled-jsx-plugin-sass": "^1.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import OtherChapters from '../components/homepage/otherChapters';
import { ToastContainer } from 'react-toastify';
import Head from '../components/head';
import fetchContent from '../utils/fetchContent';

Check warning on line 9 in pages/index.jsx

View workflow job for this annotation

GitHub Actions / lint

Using exported name 'fetchContent' as identifier for default export
import Section from '../components/section';
import { Container } from 'reactstrap';

Expand All @@ -23,7 +23,7 @@
<InvolveSection />
</Container>
</Section>
{/* <PartnerSection /> */}
<PartnerSection />
<OtherChapters chapterLogos={chapterLogos} />
</>
);
Expand All @@ -34,7 +34,7 @@
export async function getStaticProps() {
const {
chapterCollection,
pennWebsiteLayout: { projectsCollection },
pennWebsiteLayout: { projectsCollection },
} = await fetchContent(`
{
chapterCollection {
Expand Down
Loading
Loading