diff --git a/app/ui/src/app/constants/b2Branding.ts b/app/ui/src/app/constants/b2Branding.ts new file mode 100644 index 00000000..6195cd90 --- /dev/null +++ b/app/ui/src/app/constants/b2Branding.ts @@ -0,0 +1,5 @@ +export const B2_LOGO_MARK = "b²"; + +export const B2_FOOTER_TAGLINE = "Built with ❤️ for Humanity."; + +export const B2_FOUNDATION_NAME = "The Benevolent Bandwidth Foundation"; diff --git a/app/ui/src/app/edit/components/layout/sidebar/Sidebar.tsx b/app/ui/src/app/edit/components/layout/sidebar/Sidebar.tsx index d7d55f8b..1181eba7 100644 --- a/app/ui/src/app/edit/components/layout/sidebar/Sidebar.tsx +++ b/app/ui/src/app/edit/components/layout/sidebar/Sidebar.tsx @@ -2,11 +2,14 @@ import { SIDEBAR_ROOT, SIDEBAR_NAV } from "@/app/edit/formStyles.v2"; type SidebarProps = { children: React.ReactNode; + className?: string; }; -export default function Sidebar({ children }: SidebarProps) { +export default function Sidebar({ children, className }: SidebarProps) { return ( -