no h1 heading updated cargivers and paymentinsurence page updated

This commit is contained in:
akash 2026-01-12 11:47:50 +05:30
parent c20b9490ae
commit 3272a7c980
4 changed files with 637 additions and 628 deletions

View File

@ -1,5 +1,4 @@
'use client' 'use client'
import Layout from "@/components/layout/Layout";
import Link from "next/link"; import Link from "next/link";
import { useState } from 'react'; import { useState } from 'react';
import Image from "next/image"; import Image from "next/image";
@ -28,7 +27,6 @@ export default function Home() {
} }
return ( return (
<> <>
<Layout headerStyle={1} footerStyle={1} breadcrumbTitle="Caregivers" bannerImage="/assets/images/caregivers/caregivers-banner.webp">
<section className="feature-section pt_90 pb_90"> <section className="feature-section pt_90 pb_90">
<div className="shape hide-element"> <div className="shape hide-element">
<Image <Image
@ -277,7 +275,6 @@ export default function Home() {
</div> </div>
</div> </div>
</section> </section>
</Layout>
</> </>
); );
} }

View File

@ -1,4 +1,5 @@
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
import Layout from "@/components/layout/Layout";
export const metadata = { export const metadata = {
title: "Trusted Caregiver Support Services Rapharehab Clinic", title: "Trusted Caregiver Support Services Rapharehab Clinic",
@ -11,5 +12,14 @@ const CaregiversPage = dynamic(() => import("../caregivers/CaregiversPage"), {
}); });
export default function Page() { export default function Page() {
return <CaregiversPage />; return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Caregivers"
bannerImage="/assets/images/caregivers/caregivers-banner.webp"
>
<CaregiversPage />
</Layout>
);
} }

View File

@ -1,7 +1,6 @@
"use client"; "use client";
import Link from "next/link"; import Link from "next/link";
import Layout from "@/components/layout/Layout";
import { useState } from 'react'; import { useState } from 'react';
export default function RefugeeIFHP() { export default function RefugeeIFHP() {
@ -26,12 +25,6 @@ export default function RefugeeIFHP() {
return ( return (
<> <>
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Refugee Physiotherapy & IFHP Claims"
bannerImage="/assets/images/payment-insurance/payment-banner.webp"
>
<section className="solutions-section pb-0"> <section className="solutions-section pb-0">
<div className="auto-container"> <div className="auto-container">
<div className="content-box full-width"> <div className="content-box full-width">
@ -492,7 +485,6 @@ export default function RefugeeIFHP() {
</div> </div>
</section> </section>
</Layout>
</> </>
); );
} }

View File

@ -1,4 +1,5 @@
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
import Layout from "@/components/layout/Layout";
export const metadata = { export const metadata = {
title: title:
@ -13,5 +14,14 @@ const RefugeeIFHPPage = dynamic(() => import("../payment-insurance/PaymentInsure
}); });
export default function Page() { export default function Page() {
return <RefugeeIFHPPage />; return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Refugee Physiotherapy & IFHP Claims"
bannerImage="/assets/images/payment-insurance/payment-banner.webp"
>
<RefugeeIFHPPage />
</Layout>
);
} }