first commit

This commit is contained in:
Dhanraj
2024-07-07 14:31:05 +05:30
commit 1d502a2cf1
1089 changed files with 161249 additions and 0 deletions

View File

@ -0,0 +1,46 @@
import React, { useEffect } from 'react';
//= Layout
import MainLayout from 'layouts/Main';
//= Components
import NavbarRTL from 'components/Navbars/StartupNav/RTLNav';
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/Startup/Footer';
//= Scripts
import { fixRtlStylesheetsOrder } from 'common/fixStylesheetsOrder';
const RTLPageServices = () => {
useEffect(() => {
fixRtlStylesheetsOrder();
}, []);
return (
<MainLayout>
<NavbarRTL whiteNotRounded />
<main className="services-page style-5">
<Features rtl isServices />
<Services rtl />
<About rtl noPaddingTop />
<Testimonials rtl />
<Pricing rtl />
</main>
<Footer rtl />
</MainLayout>
)
}
export const Head = () => {
return (
<>
<title>Iteck - الخدمات</title>
<link rel="stylesheet" href="/assets/css/lib/bootstrap.rtl.min.css" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/rtl_style.css" />
</>
)
}
export default RTLPageServices;