Skip to content
Snippets Groups Projects
Verified Commit 0b22d699 authored by Andrej Ramašeuski's avatar Andrej Ramašeuski
Browse files

Konec registrace

parent 72c034f7
Branches
No related tags found
No related merge requests found
Pipeline #20092 passed
......@@ -27,6 +27,7 @@ import Map from "./pages/Map";
import Party from "./pages/Party";
import Program from "./pages/Program";
import Registration from "./pages/Registration";
import Registration2 from "./pages/Registration2";
import Team from "./pages/Team";
import Volunteers from "./pages/Volunteers";
import Workshops from "./pages/Workshops";
......@@ -104,7 +105,8 @@ function PageBody() {
})}
>
<Routes>
<Route path="/registrace" element={<Registration />} />
<Route path="/registrace-vip" element={<Registration />} />
<Route path="/registrace" element={<Registration2 />} />
<Route path="/stravovani" element={<Catering />} />
<Route path="/organizatori" element={<Team />} />
<Route path="/ubytovani" element={<Accommodation />} />
......
......@@ -163,11 +163,11 @@ export const nav = [
title: "Zasedání CF",
link: "/zasedani",
},
// {
// link: "/registrace",
// title: "Registrace",
// notonhome: true,
// },
{
link: "/registrace",
title: "Registrace",
notonhome: true,
},
{
link: "/ubytovani",
title: "Ubytování",
......
import { Helmet } from "react-helmet";
import PageTitle from "components/PageTitle";
import { basics } from "config";
const Registration2 = () => {
return (
<article className="w-full">
<PageTitle>Registrace byla ukončena</PageTitle>
<Helmet>
<title>Registrace | {basics.appTitle}</title>
<meta property="og:title" content="Registrace" />
</Helmet>
<div className="content-block">
<p>
Registrace na zasedání Celostátního fóra 2024 byla z kapacitních důvodů ukončena. To však neznamená, že přijdete o možnost účasti zasedání můžete sledovat a zapojit se online na adrese <a href="https://cf2024.online/">cf2024.online</a>
</p>
</div>
</article>
);
};
export default Registration2;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment