22 lines
709 B
TypeScript
22 lines
709 B
TypeScript
import React from 'react'
|
|
import './AboutUs.css'
|
|
import {PiCookingPotFill} from 'react-icons/pi'
|
|
|
|
const AboutUs = () => {
|
|
return (
|
|
<div className="app_aboutus app_bg flex_center section_padding" id='about'>
|
|
<div className="app_aboutus_overlay flex_center">
|
|
<img src="IMG_2431.jpg" alt="" />
|
|
</div>
|
|
<div className="app_aboutus_content flex_center">
|
|
<div className="app_aboutus_content_about">
|
|
<h1 className="headtext_cormorant">About Us</h1>
|
|
<PiCookingPotFill/>
|
|
<p className="p_opensans">jflasjfuuhhgduiahdsajkfnaslfnsaieoljw</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AboutUs |