Skip to content
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
2 changes: 1 addition & 1 deletion pwa/app/(common)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function RootLayout({
className={`${poppins.variable} ${fira.variable} w-full light`}
>
<body className="bg-white dark:bg-blue-black">
<ModalCon />
{/*<ModalCon />*/}
<Layout>{children}</Layout>
</body>
</html>
Expand Down
8 changes: 4 additions & 4 deletions pwa/app/(con)/[locale]/con/2026/components/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ const HomePage = ({ speakers, partners }: HomePageProps) => {
<LogoTilleuls secondColor="#fff" width="60%" />
</a>
</div>
{currentEdition === "2026" && (
{/*currentEdition === "2026" && (
<BuyButton className="mr-2" id="cover">
{t("buy_tickets")}
</BuyButton>
)}
)*/}
</div>
</div>
</div>
Expand Down Expand Up @@ -88,7 +88,7 @@ const HomePage = ({ speakers, partners }: HomePageProps) => {
) : null}
</div>
</Section>
{currentEdition === "2026" && (
{/* currentEdition === "2026" && (
<Section
className="relative py-10 before:bg-grey before:h-[calc(100%-500px)] before:absolute before:left-0 before:bottom-0 before:w-full after:bg-wave2 after:w-[1300px] after:h-[800px] after:absolute after:top-24 after:left-1/2 after:bg-top after:bg-contain after:opacity-50 after:bg-no-repeat after:-translate-x-1/2 after:rotate-6"
section="pricing"
Expand Down Expand Up @@ -125,7 +125,7 @@ const HomePage = ({ speakers, partners }: HomePageProps) => {
</div>
</div>
</Section>
)}
)*/}
<Venue
subtitle={t("2026.venue.subtitle")}
tip_title={t("2026.venue.tip_title")}
Expand Down
2 changes: 1 addition & 1 deletion pwa/app/(con)/[locale]/con/2026/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function EditionLayout({
const talks = await getAllConferences("2026", true, locale);
const eventData = getEditionEventData("2026", speakers, talks);
return (
<LayoutBase edition="2026" nav={nav} footer={footer} isTicketingOpen>
<LayoutBase edition="2026" nav={nav} footer={footer} isTicketingOpen={false}>
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(eventData) }}
Expand Down
2 changes: 1 addition & 1 deletion pwa/components/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function Layout({ children }: { children: React.ReactNode }) {
)}
>
<Providers>
<Nav withPreheader={true} />
<Nav withPreheader={false} />
</Providers>
{children}
</div>
Expand Down
4 changes: 0 additions & 4 deletions pwa/data/con/2026/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ const footer = [
link: "/{{locale}}/con/2026/conferences",
title: "nav.links.conferences",
},
{
link: "/{{locale}}/con/2026/#pricing",
title: "nav.links.pricing",
},
],
},
{
Expand Down
4 changes: 0 additions & 4 deletions pwa/data/con/2026/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ const nav = {
to: "/{{locale}}/con/2026/#venue",
text: "nav.links.venue",
},
{
to: "/{{locale}}/con/2026/#pricing",
text: "nav.links.pricing",
},
{
to: "/{{locale}}/con/2026/schedule",
text: "nav.links.schedule",
Expand Down
Loading