diff --git a/src/frontend/src/components/pageLayout/index.tsx b/src/frontend/src/components/pageLayout/index.tsx index bf815e9ac..10be78bbd 100644 --- a/src/frontend/src/components/pageLayout/index.tsx +++ b/src/frontend/src/components/pageLayout/index.tsx @@ -1,3 +1,4 @@ +import { CustomBanner } from "@/customization/components/custom-banner"; import { Separator } from "../ui/separator"; export default function PageLayout({ @@ -14,19 +15,22 @@ export default function PageLayout({ betaIcon?: boolean; }) { return ( -
-
-
-

- {title} - {betaIcon && BETA} -

-

{description}

+
+
+ +
+
+

+ {title} + {betaIcon && BETA} +

+

{description}

+
+
{button && button}
-
{button && button}
{children} diff --git a/src/frontend/src/customization/components/custom-banner.tsx b/src/frontend/src/customization/components/custom-banner.tsx new file mode 100644 index 000000000..b4a2be11c --- /dev/null +++ b/src/frontend/src/customization/components/custom-banner.tsx @@ -0,0 +1,3 @@ +export function CustomBanner() { + return <>; +}