diff --git a/public/images/2.png b/public/images/2.png deleted file mode 100644 index fdcaa1d..0000000 Binary files a/public/images/2.png and /dev/null differ diff --git a/public/images/aboutus.png b/public/images/aboutus.png new file mode 100644 index 0000000..bdaee55 Binary files /dev/null and b/public/images/aboutus.png differ diff --git a/public/images/developer1.png b/public/images/developer1.png new file mode 100644 index 0000000..a691009 Binary files /dev/null and b/public/images/developer1.png differ diff --git a/public/images/developer2.jfif b/public/images/developer2.jfif new file mode 100644 index 0000000..334d7ea Binary files /dev/null and b/public/images/developer2.jfif differ diff --git a/public/images/developer3.jfif b/public/images/developer3.jfif new file mode 100644 index 0000000..05cf76f Binary files /dev/null and b/public/images/developer3.jfif differ diff --git a/public/images/ecology.png b/public/images/ecology.png new file mode 100644 index 0000000..b3cc1ac Binary files /dev/null and b/public/images/ecology.png differ diff --git a/public/images/laid benglia.jpg b/public/images/laid benglia.jpg new file mode 100644 index 0000000..30cbc9d Binary files /dev/null and b/public/images/laid benglia.jpg differ diff --git a/public/images/mohamed-ch.jpg b/public/images/mohamed-ch.jpg new file mode 100644 index 0000000..c276b6a Binary files /dev/null and b/public/images/mohamed-ch.jpg differ diff --git a/public/images/sara bagach.jpg b/public/images/sara bagach.jpg new file mode 100644 index 0000000..cb1c32b Binary files /dev/null and b/public/images/sara bagach.jpg differ diff --git a/public/images/sharing.png b/public/images/sharing.png new file mode 100644 index 0000000..a46dba0 Binary files /dev/null and b/public/images/sharing.png differ diff --git a/src/components/developeravatar/DeveloperAvatar.jsx b/src/components/developeravatar/DeveloperAvatar.jsx index 98c6739..8dd00a6 100644 --- a/src/components/developeravatar/DeveloperAvatar.jsx +++ b/src/components/developeravatar/DeveloperAvatar.jsx @@ -4,8 +4,8 @@ import Link from "next/link"; const DeveloperAvatar = ({ name, avatarUrl, description, href }) => { return ( -
-
+
+
{`${name}'s { layout='fill' />
-

{name}

+

+ {name} +

{description}

diff --git a/src/pages/about/index.jsx b/src/pages/about/index.jsx index 12e8e47..549aee2 100644 --- a/src/pages/about/index.jsx +++ b/src/pages/about/index.jsx @@ -1,11 +1,101 @@ +import Image from "next/image"; + +import DeveloperAvatar from "@/components/developeravatar/DeveloperAvatar"; + function AboutPage() { - return
AboutPage
; -} + return ( +
+
+
+
+
+ hero +
+
+
+
+ + About us + -export default AboutPage; +

+ Who{" "} + We Are +

+

+ Welcome to Let's Share - where sharing is + caring! In our community, we believe in the + heartwarming essence of sharing daily + essentials. Extra food, lovely clothes, or cozy + furniture - at Let's Share, it's about + connecting and making a positive impact right + where you are. Let's transform our region + into a haven of shared moments. Join Let's + Share, where sharing isn't just a choice; + it's a way of life. +

+
+
+
+
-export async function getStaticProps({ locale }) { - return { - props: {}, - }; +
+
+
+

Our Team

+
+ {/* Developer 1 */} + + {/* Developer 2 */} + + {/* Developer 3 */} + + {/* Developer 4 */} + + {/* Developer 5 */} + + {/* Developer 6 */} + +
+
+
+ ); } + +export default AboutPage;