Add cources page

This commit is contained in:
Flatlogic Bot 2025-05-13 14:21:47 +00:00
parent 767c930637
commit 1445da33bc
3 changed files with 30 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -67,6 +67,11 @@ export const webPagesNavBar = [
href: '/about',
label: 'about',
},
{
href: '/web_pages/cources',
label: 'Cources',
},
];
export default menuNavBar;

View File

@ -0,0 +1,23 @@
import React from 'react';
import Head from 'next/head';
import LayoutGuest from '../../layouts/Guest';
import WebSiteHeader from '../../components/WebPageComponents/Header';
import WebSiteFooter from '../../components/WebPageComponents/Footer';
const Cources = () => (
<>
<Head>
<title>Cources</title>
</Head>
<WebSiteHeader />
<main>
{/* Blank public page content */}
</main>
<WebSiteFooter />
</>
);
// Use the guest layout for public pages
Cources.getLayout = page => <LayoutGuest>{page}</LayoutGuest>;
export default Cources;