Add src/app/login/page.tsx
This commit is contained in:
30
src/app/login/page.tsx
Normal file
30
src/app/login/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ContactForm from '@/components/form/ContactForm';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Services", id: "/#features" },
|
||||
{ name: "Register", id: "/register" },
|
||||
{ name: "Login", id: "/login" },
|
||||
]}
|
||||
brandName="MediConnect"
|
||||
/>
|
||||
<div className="min-h-screen pt-24 flex items-center justify-center">
|
||||
<ContactForm
|
||||
title="Patient Login"
|
||||
description="Sign in to your secure portal."
|
||||
tag="Login"
|
||||
buttonText="Login"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user