first commit
This commit is contained in:
33
src/app/about/page.tsx
Normal file
33
src/app/about/page.tsx
Normal file
@ -0,0 +1,33 @@
|
||||
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";
|
||||
import Services from "../../components/about/Services";
|
||||
import StatisticsTiles from "../../components/about/StatisticsTiles";
|
||||
import PatientCareCards from "../../components/about/PatientCareCards";
|
||||
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user