Add src/app/appointment/page.tsx

This commit is contained in:
2026-04-28 17:00:44 +00:00
parent dd8aa037a9
commit 9214d20c8a

View File

@@ -0,0 +1,37 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function AppointmentPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Patient Forms", id: "/patient-intake" },
{ name: "Appointment", id: "/appointment" },
]}
brandName="Forsyth Spinal"
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Request an Appointment</h1>
<p className="text-lg mb-6">Select your preferred date and time for your consultation. Our team will review your request and confirm shortly.</p>
<ContactCenter
tag="Schedule Now"
title="Scheduling Interface"
description="Provide your preferred appointment details below."
background={{ variant: "plain" }}
/>
</div>
<FooterBaseCard
logoText="Forsyth Spinal"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Patient Forms", href: "/patient-intake" }, { label: "Appointment", href: "/appointment" }] }
]}
/>
</ThemeProvider>
);
}