first commit
This commit is contained in:
49
src/pages/page-services-5/index.jsx
Normal file
49
src/pages/page-services-5/index.jsx
Normal file
@ -0,0 +1,49 @@
|
||||
import React, { useEffect, useRef } from 'react';
|
||||
//= Scripts
|
||||
import navbarScrollEffect from "common/navbarScrollEffect";
|
||||
//= Layout
|
||||
import MainLayout from 'layouts/Main';
|
||||
//= Components
|
||||
import TopNav from 'components/Navbars/TopNav';
|
||||
import Navbar from 'components/Navbars/SaasNav';
|
||||
import Features from 'components/Saas/Features';
|
||||
import Services from 'components/Saas/Services';
|
||||
import About from 'components/Saas/About';
|
||||
import Testimonials from 'components/Saas/Testimonials';
|
||||
import Pricing from 'components/Saas/Pricing';
|
||||
import Footer from 'components/software/Footer';
|
||||
|
||||
const PageServices5 = () => {
|
||||
const navbarRef = useRef(null);
|
||||
|
||||
useEffect(() => {
|
||||
navbarScrollEffect(navbarRef.current);
|
||||
}, [navbarRef]);
|
||||
|
||||
return (
|
||||
<MainLayout>
|
||||
{/* <TopNav style="5" /> */}
|
||||
<Navbar navbarRef={navbarRef} />
|
||||
<main className="services-page style-5">
|
||||
<Features isServices />
|
||||
<Services />
|
||||
{/* <About noPaddingTop /> */}
|
||||
{/* <Testimonials /> */}
|
||||
{/* <Pricing /> */}
|
||||
</main>
|
||||
<Footer noWave />
|
||||
</MainLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export const Head = () => {
|
||||
return (
|
||||
<>
|
||||
<title>Iteck - Services 5</title>
|
||||
<link rel="stylesheet" href="/assets/css/lib/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="/assets/css/style.css" />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
export default PageServices5;
|
||||
Reference in New Issue
Block a user