31 lines
1008 B
TypeScript
31 lines
1008 B
TypeScript
import Header from "../../components/Layouts/Header"; // Adjust path based on your project structure
|
|
import { Footer } from "../../components/Layouts/Footer"
|
|
import Process from "../../components/about/process";
|
|
import Breadcrumb from "../../components/about/AboutBreadcrumb";
|
|
import Introduction from "../../components/about/Introduction";
|
|
import MissionVision from "../../components/about/MissionVision";
|
|
|
|
export default function Home() {
|
|
const breadcrumbItems = [
|
|
{ label: "Home", href: "/" },
|
|
{ label: "About Us", isActive: true }
|
|
];
|
|
return (
|
|
<>
|
|
<Header />
|
|
<Breadcrumb
|
|
items={breadcrumbItems}
|
|
title="About Us"
|
|
description="Dedicated to excellence in trauma care at CMC Hospital, Ranipet campus—saving lives with compassion and expertise."
|
|
/>
|
|
<Introduction />
|
|
<MissionVision />
|
|
<Process />
|
|
{/* <Services />
|
|
<StatisticsTiles />
|
|
<PatientCareCards /> */}
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|