34 lines
907 B
TypeScript
34 lines
907 B
TypeScript
import React from 'react'
|
|
import HomeNav from '../components/navigation/HomeNav';
|
|
import FooterHomeOne from '../components/FooterHomeOne';
|
|
import HeroAbout from './HeroAbout';
|
|
import ServicesAbout from './ServicesAbout';
|
|
import AboutTextComponent from './AboutText';
|
|
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 (
|
|
<>
|
|
<HomeNav />
|
|
<HeroAbout />
|
|
<ServicesAbout />
|
|
<AboutTextComponent/>
|
|
<FooterHomeOne className="appie-footer-about-area" />
|
|
<BackToTop className='' />
|
|
</>
|
|
|
|
)
|
|
}
|
|
|
|
export default page |