[d7b7f00] | 1 | import styles from "../../css/AboutPageCss/about-body-style.module.css"
|
---|
| 2 | import mission_image from "../../images/familyCookingTogether.jpg"
|
---|
| 3 | import vision_image from "../../images/familyMeal.jpg"
|
---|
| 4 | import value_image from "../../images/womanSmiling.jpg"
|
---|
| 5 | const AboutBody = () => {
|
---|
| 6 |
|
---|
| 7 | return <div className={styles.aboutSection}>
|
---|
| 8 | <div className={styles.container}>
|
---|
| 9 | <h1>About CookCraft</h1>
|
---|
| 10 | <p className={styles.introText}>
|
---|
| 11 | At CookCraft, we believe that cooking is more than just a necessity, it's an art form that brings people
|
---|
| 12 | together. Whether you're an experienced chef or just starting in the kitchen, CookCraft is here to
|
---|
| 13 | inspire, guide, and support your culinary journey.
|
---|
| 14 | </p>
|
---|
| 15 |
|
---|
| 16 | <div className={styles.aboutDetails}>
|
---|
| 17 | <div className={styles.aboutItem}>
|
---|
| 18 | <img src={mission_image} alt="Our Mission"/>
|
---|
| 19 | <h3>Our Mission</h3>
|
---|
| 20 | <p>
|
---|
| 21 | To make cooking accessible to everyone by providing easy-to-follow recipes, detailed guides, and
|
---|
| 22 | a supportive community.
|
---|
| 23 | </p>
|
---|
| 24 | </div>
|
---|
| 25 | <div className={styles.aboutItem}>
|
---|
| 26 | <img src={vision_image} alt="Our Vision"/>
|
---|
| 27 | <h3>Our Vision</h3>
|
---|
| 28 | <p>
|
---|
| 29 | To become the go-to platform for all things cooking, where everyone can find inspiration,
|
---|
| 30 | knowledge, and a sense of belonging.
|
---|
| 31 | </p>
|
---|
| 32 | </div>
|
---|
| 33 | <div className={styles.aboutItem}>
|
---|
| 34 | <img src={value_image} alt="Our Values"/>
|
---|
| 35 | <h3>Our Values</h3>
|
---|
| 36 | <p>
|
---|
| 37 | We value creativity, community, and the joy of cooking. We are committed to helping everyone
|
---|
| 38 | discover the chef within.
|
---|
| 39 | </p>
|
---|
| 40 | </div>
|
---|
| 41 | </div>
|
---|
| 42 |
|
---|
| 43 | <div className={styles.teamSection}>
|
---|
| 44 | <h2>Meet the Team</h2>
|
---|
| 45 | <p className={styles.teamIntro}>
|
---|
| 46 | Our team of passionate cooks, developers, and content creators work tirelessly to bring you the best
|
---|
| 47 | cooking experience possible.
|
---|
| 48 | </p>
|
---|
| 49 | <div className={styles.teamMembers}>
|
---|
| 50 | <div className={styles.teamMember}>
|
---|
| 51 | <img src="https://via.placeholder.com/250" alt="Team Member 1"/>
|
---|
| 52 | <h4>Team Member 1</h4>
|
---|
| 53 | <p>Role: Lead Developer</p>
|
---|
| 54 | </div>
|
---|
| 55 | <div className={styles.teamMember}>
|
---|
| 56 | <img src="https://via.placeholder.com/250" alt="Team Member 2"/>
|
---|
| 57 | <h4>Team Member 2</h4>
|
---|
| 58 | <p>Role: Head Chef</p>
|
---|
| 59 | </div>
|
---|
| 60 | <div className={styles.teamMember}>
|
---|
| 61 | <img src="https://via.placeholder.com/250" alt="Team Member 3"/>
|
---|
| 62 | <h4>Team Member 3</h4>
|
---|
| 63 | <p>Role: Content Creator</p>
|
---|
| 64 | </div>
|
---|
| 65 | </div>
|
---|
| 66 | </div>
|
---|
| 67 | </div>
|
---|
| 68 | </div>
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | export default AboutBody; |
---|