forked from berachain/monobera
-
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.
fix(hub): add layout pages to gov proposal
- Loading branch information
1 parent
f3baef8
commit 6c6c2b6
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
apps/hub/src/app/governance/proposal/[proposalId]/layout.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 @@ | ||
import { FooterSM } from "@bera/shared-ui/src/footer"; | ||
|
||
export default function Layout({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<section> | ||
<div className="container min-h-minimum max-w-1280 pb-16">{children}</div> | ||
<FooterSM /> | ||
</section> | ||
); | ||
} |
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 @@ | ||
import { FooterSM } from "@bera/shared-ui/src/footer"; | ||
|
||
export default function Layout({ children }: { children: React.ReactNode }) { | ||
return ( | ||
<section> | ||
<div className="container min-h-minimum max-w-1280 pb-16">{children}</div> | ||
<FooterSM /> | ||
</section> | ||
); | ||
} |