Skip to content

Commit 90ee722

Browse files
authored
Add Home component for Tips Ecosystem frontend
1 parent 298558a commit 90ee722

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

pages/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
export default function Home() {
2+
return (
3+
<div style={{ fontFamily: "Arial, sans-serif", padding: "2rem" }}>
4+
<h1>Welcome to Tips Ecosystem</h1>
5+
<p>
6+
This is the Next.js frontend for the TipsChain blockchain.
7+
Smart contracts are managed with Hardhat, and this UI will
8+
evolve into the dashboard and explorer.
9+
</p>
10+
<p>
11+
🚀 Ready to build, deploy, and scale!
12+
</p>
13+
</div>
14+
);
15+
}

0 commit comments

Comments
 (0)