19 lines
570 B
JavaScript
19 lines
570 B
JavaScript
import React from 'react'
|
|
import './DentalServicesPhotos.css'
|
|
|
|
const DentalServicesphotos = () => {
|
|
return (
|
|
<div className='dental-service-photos-container'>
|
|
<div className='dental-service-tittle'>
|
|
<h2>Clinica Dental</h2>
|
|
</div>
|
|
<div className='dental-service-photos-grid'>
|
|
<div className='dental-service-photo-one'></div>
|
|
<div className='dental-service-photo-two'></div>
|
|
<div className='dental-service-photo-three'></div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DentalServicesphotos |