Skip to content

Commit

Permalink
Merge pull request #79 from estartando-devs/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
jonataspinto authored Mar 8, 2022
2 parents e022900 + a638c81 commit 07ebaaf
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
minBestPracticesScore: '80'
minPerformanceScore: '80'
minSeoScore: '90'
progressiveWebApp: '10'
# progressiveWebApp: '10'
lighthouse-ci:
needs: [build-deploy]
runs-on: ubuntu-latest
Expand Down
18 changes: 0 additions & 18 deletions src/components/Footer/Footer.tsx

This file was deleted.

17 changes: 15 additions & 2 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
import Footer from './Footer';
import React from 'react';
import { SocialShareButtons } from './SocialShareButtons';
import * as S from './styles';
import { Logo } from '../Logo';

export { Footer };
export const Footer = () => (
<S.FooterContainer>
<Logo width={65} height={94} />
<S.FooterContent>
<S.FooterTitle variant="body1" weight="700">
Estartando Devs
</S.FooterTitle>
<SocialShareButtons />
</S.FooterContent>
</S.FooterContainer>
);
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Header/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const ContainerHeader = styled.header`
rgba(30, 30, 30, 0.8),
rgba(30, 30, 30, 0.8)
),
url('https://res.cloudinary.com/estartando-devs/image/upload/v1645815667/images/header-bg.png');
url('https://res.cloudinary.com/estartando-devs/image/upload/c_scale,w_1920/v1645815667/images/header-bg');
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
Expand Down
2 changes: 1 addition & 1 deletion src/components/OurResults/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const OurResultsContainer = styled.section`
${({ theme: { palette } }) => palette.design.black_transparent},
${({ theme: { palette } }) => palette.design.black_transparent}
),
url('https://res.cloudinary.com/estartando-devs/image/upload/v1645815667/images/nossos-resultados-bg');
url('https://res.cloudinary.com/estartando-devs/image/upload/c_scale,w_1920/v1645815667/images/nossos-resultados-bg');
background-repeat: no-repeat;
width: 100%;
min-height: 100vh;
Expand Down
2 changes: 1 addition & 1 deletion src/components/StudentProfile/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Container = styled.section`
padding-left: 7.5rem;
height: 100vh;
width: 100%;
background-image: url(https://res.cloudinary.com/estartando-devs/image/upload/w_1000,ar_16:9,c_fill,g_auto,e_sharpen/v1645818507/images/perfil-aluno-bg.png);
background-image: url('https://res.cloudinary.com/estartando-devs/image/upload/c_scale,w_1780/v1645818507/images/perfil-aluno-bg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: local;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/global.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const GlobalStyles = createGlobalStyle`
body::after{
position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
content:url("https://res.cloudinary.com/estartando-devs/image/upload/v1645815667/images/header-bg.png") ;
content:url("https://res.cloudinary.com/estartando-devs/image/upload/c_scale,w_1920/v1645815667/images/header-bg.png") ;
}
html {
Expand Down

0 comments on commit 07ebaaf

Please sign in to comment.