diff --git a/src/frontend/src/components/pageLayout/index.tsx b/src/frontend/src/components/pageLayout/index.tsx index c6bc9de47..9af894730 100644 --- a/src/frontend/src/components/pageLayout/index.tsx +++ b/src/frontend/src/components/pageLayout/index.tsx @@ -6,11 +6,13 @@ export default function PageLayout({ description, children, button, + betaIcon, }: { title: string; description: string; children: React.ReactNode; button?: React.ReactNode; + betaIcon: boolean; }) { return (
@@ -18,7 +20,10 @@ export default function PageLayout({
-

{title}

+

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

{description}

{button && button}
diff --git a/src/frontend/src/pages/StorePage/index.tsx b/src/frontend/src/pages/StorePage/index.tsx index 43067c7e3..dc2e4db37 100644 --- a/src/frontend/src/pages/StorePage/index.tsx +++ b/src/frontend/src/pages/StorePage/index.tsx @@ -164,6 +164,7 @@ export default function StorePage(): JSX.Element { return (