This commit is contained in:
Flatlogic Bot 2025-05-19 13:36:36 +00:00
parent 2900cab17a
commit 192c6c627e
4 changed files with 49 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -50,6 +50,11 @@ const nextConfig = {
source: '/pricing', source: '/pricing',
destination: '/web_pages/pricing', destination: '/web_pages/pricing',
}, },
{
source: '/users',
destination: '/web_pages/users',
},
]; ];
}, },
}; };

View File

@ -67,6 +67,11 @@ export const webPagesNavBar = [
href: '/pricing', href: '/pricing',
label: 'pricing', label: 'pricing',
}, },
{
href: '/users',
label: 'users',
},
]; ];
export default menuNavBar; export default menuNavBar;

View File

@ -0,0 +1,37 @@
import React from 'react';
import type { ReactElement } from 'react';
import Head from 'next/head';
import LayoutGuest from '../../layouts/Guest';
import WebSiteHeader from '../../components/WebPageComponents/Header';
import WebSiteFooter from '../../components/WebPageComponents/Footer';
export default function Users() {
return (
<div className="flex flex-col min-h-screen">
<Head>
<title>Users - Strategic Intelligence Engine</title>
<meta
name="description"
content="This is a placeholder public Users page for the Strategic Intelligence Engine."
/>
</Head>
<WebSiteHeader projectName="IntelliLedger Consulting" />
<main className="flex-grow bg-white rounded-none">
<section className="py-16 text-center">
<h1 className="text-4xl font-bold mb-4">Users</h1>
<p className="text-lg text-gray-600">
This is an empty public page named Users. Content coming soon.
</p>
</section>
</main>
<WebSiteFooter projectName="IntelliLedger Consulting" />
</div>
);
}
Users.getLayout = function getLayout(page: ReactElement) {
return <LayoutGuest>{page}</LayoutGuest>;
};