|
| 1 | +import React from 'react'; |
| 2 | +import Pillar from '../Pillar/Pillar'; |
| 3 | +import Image from 'next/image'; |
| 4 | + |
| 5 | +export default function MissionPillars() { |
| 6 | + return ( |
| 7 | + <section className="flex flex-col w-full md:justify-center items-center bg-white md:bg-[#CEEDF4] py-12 space-y-10"> |
| 8 | + <p className="md:uppercase font-bold md:font-light text-2xl md:text-5xl"> |
| 9 | + Our Mission Pillars |
| 10 | + </p> |
| 11 | + <div className="flex flex-col md:flex-row md:items-center md:justify-center w-full px-6 space-y-4 md:space-x-6"> |
| 12 | + <div className="flex"> |
| 13 | + <Pillar count="01" label="Mentorship" /> |
| 14 | + </div> |
| 15 | + <div className="flex justify-end w-full md:w-2/5 lg:w-1/4"> |
| 16 | + <div className="flex w-1/2 md:w-full"> |
| 17 | + <div className="w-full overflow-hidden aspect-w-4 aspect-h-3"> |
| 18 | + <Image |
| 19 | + src={'/images/mentorship-image.png'} |
| 20 | + alt="Mentorship Image" |
| 21 | + layout="fill" |
| 22 | + /> |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + </div> |
| 27 | + <div className="flex flex-col md:flex-row-reverse md:items-center md:justify-center w-full px-6 space-y-4 md:space-x-6 md:space-x-reverse"> |
| 28 | + <div className="flex justify-end"> |
| 29 | + <Pillar count="02" label="Learning" /> |
| 30 | + </div> |
| 31 | + <div className="flex md:justify-start w-full md:w-2/5 lg:w-1/4"> |
| 32 | + <div className="flex w-1/2 md:w-full"> |
| 33 | + <div className="w-full overflow-hidden aspect-w-4 aspect-h-3"> |
| 34 | + <Image |
| 35 | + src={'/images/learning-image.png'} |
| 36 | + alt="Learning Image" |
| 37 | + layout="fill" |
| 38 | + /> |
| 39 | + </div> |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + </div> |
| 43 | + <div className="flex flex-col md:flex-row md:items-center md:justify-center w-full px-6 space-y-4 md:space-x-6"> |
| 44 | + <div className="flex"> |
| 45 | + <Pillar count="03" label="Community" /> |
| 46 | + </div> |
| 47 | + <div className="flex justify-end w-full md:w-2/5 lg:w-1/4 "> |
| 48 | + <div className="flex w-1/2 md:w-full"> |
| 49 | + <div className="w-full overflow-hidden aspect-w-4 aspect-h-3"> |
| 50 | + <Image |
| 51 | + src={'/images/community-image.png'} |
| 52 | + alt="Community Image" |
| 53 | + layout="fill" |
| 54 | + /> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + </div> |
| 58 | + </div> |
| 59 | + </section> |
| 60 | + ); |
| 61 | +} |
0 commit comments