diff --git a/src/app/page.tsx b/src/app/page.tsx index 93ba5f1..eb448c4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Activity, Award, Clock, ShieldCheck, Smile, Sparkles, UserPlus } from "lucide-react"; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; export default function LandingPage() { const handleBooking = () => { @@ -33,146 +24,35 @@ export default function LandingPage() { headingFontWeight="bold" > - + -
- -
+
+

Patient Portal

+

Manage your dental health and appointments.

+
+

Authentication and dashboard modules are available for authorized patients.

+ +
+
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - +
); -} +} \ No newline at end of file diff --git a/src/app/patient-portal/page.tsx b/src/app/patient-portal/page.tsx new file mode 100644 index 0000000..68caf17 --- /dev/null +++ b/src/app/patient-portal/page.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; + +export default function PatientPortal() { + return ( + + + +
+

Patient Dashboard

+
+
+

Profile

+

View and update your personal information and health records.

+
+
+

Appointments

+

Book new visits or view your upcoming and past appointments.

+
+
+

History

+

Review your complete dental treatment history.

+
+
+
+ + +
+ ); +} \ No newline at end of file