AGENDA_DIGITAL/src/pages/landingPage/LandingPage.jsx
Christopher Ulloa f8a6a680fe err
2025-01-30 14:43:36 -07:00

37 lines
892 B
JavaScript

import React from 'react'
import Header from '../../components/header/Header'
import './landingPage.css'
import Content from '../../components/Contents/Content'
import ImgHero from '../../components/Contents/imgHero'
import Footer from '../../components/footer/Footer'
import SpaSection from '../../components/Contents/SpaSection'
import DentistaSection from '../../components/Contents/DentistaSection'
const LandingPage = () => {
return (
<>
<section className='Main-section-landing-page'>
<div className='header-landing-page'>
<Header/>
</div>
<div className='content-landing-page'>
<Content/>
</div>
<div className='img-hero-landing-page'>
<ImgHero/>
</div>
</section>
<SpaSection/>
<DentistaSection/>
<Footer/>
</>
)
}
export default LandingPage