From 9c15537dcc6491166c5780784a1ba068cab732ae Mon Sep 17 00:00:00 2001 From: tanvi chovatiya Date: Mon, 6 Oct 2025 18:45:27 +0530 Subject: [PATCH] improve Home and About components for readability and structure --- book-store/src/components/common/AboutPage.js | 16 +++++++++------- book-store/src/components/common/HomePage.js | 16 +++++++++------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/book-store/src/components/common/AboutPage.js b/book-store/src/components/common/AboutPage.js index 64a0320..1a25a03 100644 --- a/book-store/src/components/common/AboutPage.js +++ b/book-store/src/components/common/AboutPage.js @@ -1,12 +1,14 @@ import React from 'react'; const About = () => { - return ( -
-

About Page

-

Random text bro

-
- ); + return ( +
+

About Us 👩‍💻

+

+ This page shares information about our project and the people behind it. We're passionate about creating helpful and accessible web tools. +

+
+ ); }; -export default About; \ No newline at end of file +export default About; diff --git a/book-store/src/components/common/HomePage.js b/book-store/src/components/common/HomePage.js index 84bc94e..3b47998 100644 --- a/book-store/src/components/common/HomePage.js +++ b/book-store/src/components/common/HomePage.js @@ -1,12 +1,14 @@ import React from 'react'; const Home = () => { - return ( -
-

Home Page

-

Random text here

-
- ); + return ( +
+

Welcome to the Home Page 🏠

+

+ This is the landing section of our website. Explore features, read documentation, or navigate through other pages using the menu. +

+
+ ); }; -export default Home; \ No newline at end of file +export default Home;