Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main page v #34

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
12 changes: 0 additions & 12 deletions client/src/pages/MainPage.js

This file was deleted.

32 changes: 32 additions & 0 deletions client/src/pages/MainPage.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import React from 'react';

const MainPage = () => {
return (
<div className="nft-homepage">

<main>
<section className="hero">
<h2>H O V NFT market place</h2>
<p>Discover, collect, and trade unique digital assets on our platform.</p>
<button>Get Started</button>
</section>
<section className="featured">
<h3>Featured NFTs</h3>
<div className="nft-grid">
<div className="nft-card">
<img src="https://i.ibb.co/gmwZG4f/Potatoz-NFT.jpg" alt="NFT" />
<h4>NFT Title</h4>
<p>Artist Name</p>
<button>View Details</button>
</div>
</div>
</section>
</main>
<footer>
<p>© 2023 H O V NFT market place. All rights reserved</p>
</footer>
</div>
);
}

export default MainPage;
Empty file removed client/src/pages/MyPage.js
Empty file.