generated from axone-protocol/template-oss
-
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.
Merge pull request #14 from axone-protocol/feat/navigation
feat: added basic navigation and connected sidebar 'active' state to items
- Loading branch information
Showing
8 changed files
with
70 additions
and
16 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,12 @@ | ||
import Box from '@/components/ui/box'; | ||
import PageContainer from '@/components/ui/page-container'; | ||
|
||
export default function Bridge () { | ||
return ( | ||
<PageContainer> | ||
<Box > | ||
<h1 className='text-center text-white mb-5 text-3xl'>BRIDGE PAGE</h1> | ||
</Box> | ||
</PageContainer> | ||
); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Box from '@/components/ui/box'; | ||
import PageContainer from '@/components/ui/page-container'; | ||
|
||
export default function Governance () { | ||
return ( | ||
<PageContainer> | ||
<Box > | ||
<h1 className='text-center text-white mb-5 text-3xl'>GOVERNANCE PAGE</h1> | ||
</Box> | ||
</PageContainer> | ||
); | ||
} |
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,12 @@ | ||
import Box from '@/components/ui/box'; | ||
import PageContainer from '@/components/ui/page-container'; | ||
|
||
export default function Staking () { | ||
return ( | ||
<PageContainer> | ||
<Box > | ||
<h1 className='text-center text-white mb-5 text-3xl'>STAKING PAGE</h1> | ||
</Box> | ||
</PageContainer> | ||
); | ||
} |
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,12 @@ | ||
import Box from '@/components/ui/box'; | ||
import PageContainer from '@/components/ui/page-container'; | ||
|
||
export default function Wallet () { | ||
return ( | ||
<PageContainer> | ||
<Box > | ||
<h1 className='text-center text-white mb-5 text-3xl'>WALLET PAGE</h1> | ||
</Box> | ||
</PageContainer> | ||
); | ||
} |
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
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