pushing all files
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
"use client"
|
||||
import HeaderOne from "@/components/layout/headers/header-one";
|
||||
import BreadCrumb from "../../common/breadcrumb";
|
||||
import ServicesSingleMain from "./services-single";
|
||||
import SEO from "@/src/components/data/seo";
|
||||
import ScrollToTop from "../../common/scroll/scroll-to-top";
|
||||
import FooterTwo from "@/components/layout/footers/footer-two";
|
||||
|
||||
const ServicesSingle = ({serviceDetails}) => {
|
||||
return (
|
||||
<>
|
||||
<SEO pageTitle={serviceDetails?.title} />
|
||||
<HeaderOne />
|
||||
<BreadCrumb title={serviceDetails?.title} innerTitle={serviceDetails?.title} />
|
||||
<ServicesSingleMain serviceDetails={serviceDetails}/>
|
||||
<div className='all-footer'>
|
||||
<FooterTwo />
|
||||
</div>
|
||||
<ScrollToTop />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ServicesSingle;
|
||||
Reference in New Issue
Block a user