Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions book-store/src/components/common/AboutPage.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import React from 'react';

const About = () => {
return (
<div>
<h1>About Page</h1>
<p>Random text bro</p>
</div>
);
return (
<section className="about-page">
<h1>About Us 👩‍💻</h1>
<p>
This page shares information about our project and the people behind it. We're passionate about creating helpful and accessible web tools.
</p>
</section>
);
};

export default About;
export default About;
16 changes: 9 additions & 7 deletions book-store/src/components/common/HomePage.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import React from 'react';

const Home = () => {
return (
<div>
<h1>Home Page</h1>
<p>Random text here</p>
</div>
);
return (
<main className="home-page">
<h1>Welcome to the Home Page 🏠</h1>
<p>
This is the landing section of our website. Explore features, read documentation, or navigate through other pages using the menu.
</p>
</main>
);
};

export default Home;
export default Home;