generated from scaffold-eth/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dharmik79
committed
Feb 17, 2024
1 parent
0d1a83c
commit 9904658
Showing
2 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
"use client" | ||
|
||
import React from "react"; | ||
|
||
const page = () => { | ||
const handleNewPlaceSubmit = () => { | ||
console.log("clicked"); | ||
// router.push("/dashboard"); | ||
// Check for the status of the user info and allow the user to play the game and set the navigation accordingly | ||
}; | ||
return ( | ||
<div className="flex h-screen text-black"> | ||
<div className="w-64 flex flex-col p-4"> | ||
<button | ||
className="flex items-center justify-center h-12 w-full bg-blue-500 mb-4" | ||
onClick={handleNewPlaceSubmit} | ||
|
||
> | ||
New Place | ||
</button> | ||
<button className="flex items-center justify-center h-12 w-full bg-blue-500 mb-4"> | ||
My Places | ||
</button> | ||
<button className="flex items-center justify-center h-12 w-full bg-blue-500 mb-4"> | ||
All Places | ||
</button> | ||
</div> | ||
|
||
<div className="flex-1 flex flex-col "> | ||
<div className="flex justify-around p-4"> | ||
<div className="flex items-center"> | ||
<span className="icon lightning-bolt"></span> | ||
<span className="text-black text-3xl">My Solarpunk places</span> | ||
</div> | ||
|
||
<div className="flex items-start space-x-2"> | ||
<span className="icon lightning-bolt"></span> | ||
<span className="text-black text-3xl">My Cyberpunk places</span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default page; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters