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/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={false} />
<Nav withPreheader={true} />
</Providers>
{children}
</div>
Expand Down
2 changes: 0 additions & 2 deletions pwa/components/layout/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export default function Nav({ withPreheader = false }) {

const version = current;

const withRyanHeader = true;

const forceClose = () => {
setOpen(false);
};
Expand Down
8 changes: 4 additions & 4 deletions pwa/components/layout/Preheader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Link from "components/common/Link";
export default function Preheader() {
return (
<Link
href="/con/2024"
href="/con/2025"
rel="noreferrer"
className="block relative overflow-hidden bg-blue-black border-b-blue border-b-2 bg-conf-gradient text-white py-2 w-full z-50"
>
Expand Down Expand Up @@ -65,7 +65,7 @@ export default function Preheader() {
The conference dedicated to API Platform and its ecosystem
</p>
<div className="text-lg">
<strong className="font-bold">Sep 19, 20 2024</strong> | Lille &
<strong className="font-bold">Sep 18, 19 2025</strong> | Lille &
online
</div>
</div>
Expand All @@ -82,8 +82,8 @@ export default function Preheader() {
clipRule="evenodd"
/>
</svg>
<span className="lg:hidden">Register&nbsp;now</span>
<span className="hidden lg:block">Only a few tickets left!</span>
<span>Register&nbsp;now</span>
<span className="hidden">Only a few tickets left!</span>
</Button>
</div>
</Link>
Expand Down
Loading