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