Skip to content

Commit

Permalink
Merge pull request #33 from parlandin/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
parlandin authored Nov 30, 2024
2 parents 7945076 + 5fe87ef commit 1c9ac49
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions general-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const config = {
defaultLanguage: "pt-BR",

//
currentEventTheme: eventThemes.halloween,
isEventThemeActive: true,
currentEventTheme: eventThemes.default,
isEventThemeActive: false,

backendUrl: "",
};
Expand Down
7 changes: 2 additions & 5 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,8 @@ const Footer: React.FC = () => {
<p>&copy; {new Date().getFullYear()} | parlandim</p>
<p>
Esse site está sob a licença{" "}
<a
href="https://creativecommons.org/licenses/by-sa/4.0/"
target="_blank"
>
CC BY-NC-SA 4.0
<a href="https://www.gnu.org/licenses/#GPL" target="_blank">
GPL-3.0 license
</a>
</p>
</S.CopyRight>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Header: React.FC = () => {
className={`${isFixed ? "full" : "null"} ${eventThemeName}`}
>
<S.Logo to="/" title="ir para o inicio">
<StaticImage src="../../images/icon-halloween.png" alt="Logo" />
<StaticImage src="../../images/icon.png" alt="Logo" />

<p>parlan&lt;dev&gt;</p>
</S.Logo>
Expand Down
4 changes: 4 additions & 0 deletions src/components/SEO/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ const SEO: React.FC<SEOProps> = ({
<meta property="og:type" content="website" />
<meta property="og:locale" content="pt_BR" />
<meta property="og:site_name" content={seo.title} />
<meta
name="google-site-verification"
content="L6ny0CH60ZMRaVZZNNSjaRC6u3dytsC7A6T3SvZh5TE"
/>

{children}
</>
Expand Down

0 comments on commit 1c9ac49

Please sign in to comment.