-
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.
Update Profile and NavBar Components
- Loading branch information
Showing
6 changed files
with
70 additions
and
27 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
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
10 changes: 10 additions & 0 deletions
10
apps/HashRateGame/src/app/(telegram)/app/(main)/mining/_components/Condition.tsx
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,10 @@ | ||
export default function Condition() { | ||
return ( | ||
<div className="flex flex-col font-extralight"> | ||
<div className="px-4 opacity-50">Condition</div> | ||
<div className="bg-surface-container-l2 p-4 rounded-md"> | ||
<div>Condition</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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
4 changes: 3 additions & 1 deletion
4
apps/HashRateGame/src/app/(telegram)/app/(main)/mining/page.tsx
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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import Condition from './_components/Condition' | ||
import Profile from './_components/Profile' | ||
|
||
export default function Page() { | ||
return ( | ||
<div> | ||
<div className="flex flex-col gap-2"> | ||
<Profile /> | ||
<Condition /> | ||
</div> | ||
) | ||
} |
3 changes: 3 additions & 0 deletions
3
apps/HashRateGame/src/app/(telegram)/app/(main)/statistics/page.tsx
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,3 @@ | ||
export default function Page() { | ||
return <div>Statistics</div> | ||
} |