estatesfunding/ef-ui/src/components/Services.jsx

22 lines
434 B
React
Raw Normal View History

2024-09-19 16:26:46 +00:00
import Footer from "./Footer"
import Navbar from "./Navbar"
const Services = () => {
return (
<>
<Navbar />
<br /> <br /> <br /> <br /> <br /> <br />
<br /> <br /> <br /> <br /> <br />
This page will show the list of services offered by the company
<br /> <br /> <br /> <br /> <br /> <br /> <br />
<Footer />
</>
)
}
export default Services