From afb38e99b5114ba49fa195bd5fb4ffa095a285c8 Mon Sep 17 00:00:00 2001 From: Uppala Anand Date: Thu, 25 Dec 2025 14:17:50 +0530 Subject: [PATCH] =?UTF-8?q?Replaced=20placeholder=20About=20page=20with=20?= =?UTF-8?q?content=20that=20reflects=20EcoHabit=E2=80=99s=20mission,=20vis?= =?UTF-8?q?ion,=20and=20community=20focus.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 ++ client/src/pages/AboutPage.js | 101 +++++++++++++++++++++++++++++++++- 2 files changed, 104 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1d74e21..0764bde 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,6 @@ .vscode/ +/server/node_modules/ +/client/node_modules/ +/server/.env +/client/.env +/server/text.txt \ No newline at end of file diff --git a/client/src/pages/AboutPage.js b/client/src/pages/AboutPage.js index e865aa8..ce2bb84 100644 --- a/client/src/pages/AboutPage.js +++ b/client/src/pages/AboutPage.js @@ -1,5 +1,102 @@ +import React from "react"; +import { Box, Grid, Typography, Button, Paper } from "@mui/material"; + const AboutPage = () => { - return "About Page"; + return ( + + {/* Hero Section */} + + + About EcoHabit + + + + Building sustainable habits together, one small action at a time. + + + + {/* Content Section */} + + + + + Our Mission + + + EcoHabit aims to spread awareness about environmental + sustainability by helping individuals track and improve their + everyday habits. We believe that consistent, mindful actions can + create long-lasting positive change for the planet. + + + + + + + + A Growing Community + + + EcoHabit brings together people who care about the environment. + By joining the community, users motivate one another, share + progress, and learn how small lifestyle changes can make a big + difference. + + + + + + + + Making an Impact + + + From recycling and energy use to food and transportation choices, + EcoHabit helps users discover better alternatives and take + meaningful steps toward a healthier, more sustainable future. + + + + + + {/* Call to Action */} + + + Ready to build better habits and protect the planet together? + + + + + + ); }; -export default AboutPage; +export default AboutPage; \ No newline at end of file