Header and footer removed for new contact page

This commit is contained in:
akash 2025-10-17 21:44:44 +05:30
parent 0157ab5b9d
commit de8227a351
3 changed files with 32 additions and 20 deletions

View File

@ -228,7 +228,7 @@ export default function ContactClient() {
</div> </div>
</div> </div>
<div className="col-lg-4 col-md-12 col-sm-12 image-column"> <div className="col-lg-4 col-md-12 col-sm-12 image-column re-desprict">
<figure className="image-box"> <figure className="image-box">
<img src="/assets/images/contact/appointment.webp" alt="Physiotherapy at Rapharehab" /> <img src="/assets/images/contact/appointment.webp" alt="Physiotherapy at Rapharehab" />
</figure> </figure>

View File

@ -15,13 +15,15 @@ export const metadata = {
export default function Appointment() { export default function Appointment() {
return ( return (
<Layout // <Layout
headerStyle={1} // headerStyle={1}
footerStyle={1} // footerStyle={1}
breadcrumbTitle="Appointment Booking" // breadcrumbTitle="Appointment Booking"
bannerImage="/assets/images/contact/appointment-banner.webp" // bannerImage="/assets/images/contact/appointment-banner.webp"
> // >
<>
<ContactClient /> <ContactClient />
</Layout> </>
// </Layout>
); );
} }

View File

@ -3852,22 +3852,32 @@
} }
@media (max-width:768px) { @media (max-width:768px) {
.image-1-ho-new img { .image-1-ho-new img {
position: relative; position: relative;
top: 13px; top: 13px;
left: 79px; left: 79px;
} }
} }
@media only screen and (max-width: 500px) and (min-width : 200px) { @media only screen and (max-width: 500px) and (min-width : 200px) {
.image-1-ho-new img { .image-1-ho-new img {
position: relative; position: relative;
top: 13px; top: 13px;
left: -19px; left: -19px;
} }
}
@media only screen and (max-width: 768px) and (min-width: 200px) {
.re-desprict {
display: none !important;
}
} }