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

chore: drop netlify branding #1037

Merged
merged 1 commit into from
Dec 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
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,3 @@ Antes de fazer um commit, é recomendado executar o `prettier` (se usarem um edi
```bash
yarn format
```

## Parceiros

[![Deploys by Netlify](./src/images/netlify-dark.svg)](https://www.netlify.com)
1 change: 0 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ module.exports = {
githubLink: 'https://github.com/leic-pt/resumos-leic',
contributionGuideLink: 'https://docs.leic.pt',
contributorsLink: 'https://github.com/leic-pt/resumos-leic/graphs/contributors',
netlifyLink: 'https://www.netlify.com',
},
search: {
host: 'https://meilisearch.diogotc.com',
Expand Down
9 changes: 1 addition & 8 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { graphql, useStaticQuery } from 'gatsby';
import React from 'react';
import NetlifyLogo from '../../images/netlify-dark.svg';
import GitHubLogo from '../icons/GitHub';
import ExternalLink from '../ExternalLink';
import './Footer.css';
Expand All @@ -14,7 +13,6 @@ const Footer = () => {
githubLink
contributionGuideLink
contributorsLink
netlifyLink
owner {
name
website
Expand All @@ -25,7 +23,7 @@ const Footer = () => {
}
`);

const { githubLink, contributionGuideLink, contributorsLink, netlifyLink, owner } =
const { githubLink, contributionGuideLink, contributorsLink, owner } =
data.site.siteMetadata.footer;

return (
Expand All @@ -43,11 +41,6 @@ const Footer = () => {
<span>
Content by <ExternalLink href={contributorsLink}>many awesome contributors</ExternalLink>
</span>
<span>
<ExternalLink href={netlifyLink}>
<img style={{ height: '2.2em' }} src={NetlifyLogo} alt='Deploys by Netlify' />
</ExternalLink>
</span>
</div>
</footer>
);
Expand Down
1 change: 0 additions & 1 deletion src/images/netlify-dark.svg

This file was deleted.

Loading