Skip to content

Commit

Permalink
Merge pull request #50 from skye8-tech/appointment2
Browse files Browse the repository at this point in the history
Appointment2
  • Loading branch information
spykelionel authored Aug 15, 2024
2 parents caffd63 + 48d3caf commit 81e0185
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/pages/appointment/Appointment.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import React from 'react'
import AppointmentSection from './components/AppointmentSection'
import Header from '../../components/layout/Header'
import Footer from '../../components/layout/Footer'
import Hero1 from '../../components/layout/Hero1'

const Appointment = () => {
return (
<div>
<Header/>
<Hero1
title ="Appointments"
text="Home"
span ="Appointments"
/>
<AppointmentSection
text =" Apply Get a Consultation"
info="Information"
fN="First Name"
LN ="Last Name"
number ="Phone number"
date ="Date"
department = "Department"
Email="Email Address"
/>
<Footer/>

</div>
)
}

export default Appointment

0 comments on commit 81e0185

Please sign in to comment.