Skip to content

Commit

Permalink
2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gvorbeck committed Nov 12, 2023
1 parent 70187eb commit beb2fa9
Show file tree
Hide file tree
Showing 3 changed files with 163 additions and 20 deletions.
173 changes: 154 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2",
"vite": "^4.4.9",
"vite-plugin-svgr": "^4.0.0",
Expand Down
9 changes: 8 additions & 1 deletion src/components/PageLayout/PageLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Layout } from "antd";
import { Alert, Layout } from "antd";
import FooterContent from "./FooterContent/FooterContent";
import { Outlet } from "react-router-dom";
import HeaderContent from "./HeaderContent/HeaderContent";
Expand All @@ -19,6 +19,13 @@ export default function PageLayout({
className="max-w-[1200px] m-auto"
/>
</Layout.Header>
<Alert
type="info"
message="Codex.Quest v2.0 coming in December with many new features and upgrades."
// className="mt-4 mx-4"
banner
closable
/>
<Layout.Content className="bg-springWood p-8 print:p-0 flex-[1_1_auto] inline-table">
<Outlet context={{ user, className: "max-w-[1200px] m-auto" }} />
</Layout.Content>
Expand Down

0 comments on commit beb2fa9

Please sign in to comment.