users
This commit is contained in:
parent
2900cab17a
commit
192c6c627e
File diff suppressed because one or more lines are too long
@ -50,6 +50,11 @@ const nextConfig = {
|
|||||||
source: '/pricing',
|
source: '/pricing',
|
||||||
destination: '/web_pages/pricing',
|
destination: '/web_pages/pricing',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
source: '/users',
|
||||||
|
destination: '/web_pages/users',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
37
frontend/src/pages/web_pages/users.tsx
Normal file
37
frontend/src/pages/web_pages/users.tsx
Normal 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>;
|
||||||
|
};
|
||||||
Loading…
x
Reference in New Issue
Block a user