Skip to content

Commit

Permalink
fix(hub): add layout pages to gov proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
BrownBrownBear committed Sep 26, 2024
1 parent f3baef8 commit 6c6c2b6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/hub/src/app/governance/proposal/[proposalId]/layout.tsx
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>
);
}
10 changes: 10 additions & 0 deletions apps/hub/src/app/governance/proposal/layout.tsx
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>
);
}

0 comments on commit 6c6c2b6

Please sign in to comment.