Skip to content

Commit

Permalink
feat: sponsor before the talks
Browse files Browse the repository at this point in the history
  • Loading branch information
davideimola committed Jan 15, 2025
1 parent bf3c012 commit d2f7598
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function Layout({
}, [router.events]);

const areSponsorVisible = () => {
return router.asPath === '/sponsor' || router.asPath === '/';
return router.asPath === '/sponsor' || router.asPath === '/index';
};

return (
Expand All @@ -83,7 +83,7 @@ export default function Layout({
<meta property="og:url" content={metas.url ? metas.url : 'https://2025.osday.dev'} />
<meta property="og:description" content={metas.description ? metas.description : "Open Source Day 2025 coming on 21 March 2025. Stay tuned on our socials"} />
<meta property="og:site_name" content="Open Source Day 2025" />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content={metas.image ? metas.image : 'https://osday.dev/intro-2025.png'} />
<meta name="twitter:image:alt" content="Open Source Day 2025" />
Expand Down
1 change: 1 addition & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default function Home() {
Click to discover the agenda!
</Link>*/}
</div>
<SponsorTable isVisible={true} />
{
<section className="talks_2024">
<h1>Some of 2024 edition talks:</h1>
Expand Down

0 comments on commit d2f7598

Please sign in to comment.