31 lines
852 B
TypeScript
31 lines
852 B
TypeScript
import React from 'react'
|
|
import ServiceNav from '../components/navigation/ServiceNav';
|
|
import HeroTerms from './HeroTerms'
|
|
import DetailsService from './DetailsService'
|
|
import FooterHomeOne from '../components/FooterHomeOne';
|
|
import BackToTop from '../components/BackToTop';
|
|
|
|
// must be a better way to centralize the style = TEMPORARY USE
|
|
import '../assets/css/bootstrap.min.css';
|
|
import '../assets/css/custom-animated.css';
|
|
import '../assets/css/default.css';
|
|
import '../assets/css/font-awesome.min.css';
|
|
import '../assets/css/magnific-popup.css';
|
|
import '../assets/css/main.css';
|
|
import '../assets/css/style.css';
|
|
|
|
|
|
function page() {
|
|
return (
|
|
<>
|
|
<ServiceNav />
|
|
<HeroTerms title="Terms of use" />
|
|
<DetailsService />
|
|
<FooterHomeOne className='' />
|
|
<BackToTop className='' />
|
|
</>
|
|
|
|
)
|
|
}
|
|
|
|
export default page |