added border radius

This commit was merged in pull request #50.
This commit is contained in:
victorAnumudu
2024-09-05 17:25:51 +01:00
parent 50e2385b50
commit 0a31a25162
5 changed files with 17 additions and 5 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ const AuthLayout = () => {
className="d-flex h-100 align-items-center"
>
{/* begin::Wrapper */}
<div className="w-lg-500px p-10 bg-white shadow-sm">
<div className="w-lg-500px p-10 bg-white shadow-sm rounded">
{/* begin::Title */}
<h1 className="text-black fs-2qx fw-bolder text-center mb-7">
{/* begin::Logo */}
+8
View File
@@ -0,0 +1,8 @@
export default function HelpPage() {
return (
<div className="w-100 h-100">
<h1 className="fs-2hx fw-bold text-gray-800">Help</h1>
</div>
)
}
+2
View File
@@ -11,6 +11,7 @@ import {PrivateRoutes} from './PrivateRoutes'
import {ErrorsPage} from '../modules/errors/ErrorsPage'
import {Logout, AuthPage, useAuth} from '../modules/auth'
import {App} from '../App'
import HelpPage from '../modules/help/HelpPage'
/**
* Base URL of the website.
@@ -26,6 +27,7 @@ const AppRoutes: FC = () => {
<Routes>
<Route element={<App />}>
<Route path='error/*' element={<ErrorsPage />} />
<Route path='/help' element={<HelpPage />} />
<Route path='logout' element={<Logout />} />
{currentUser ? (
<>