diff --git a/plugins/bazaar/src/components/HomePage/HomePage.tsx b/plugins/bazaar/src/components/HomePage/HomePage.tsx index cec7171c20..fec2bf2d6f 100644 --- a/plugins/bazaar/src/components/HomePage/HomePage.tsx +++ b/plugins/bazaar/src/components/HomePage/HomePage.tsx @@ -19,7 +19,14 @@ import { Header, RoutedTabs } from '@backstage/core-components'; import { SortView } from '../SortView'; import { About } from '../About'; -export const HomePage = () => { +export type HomePageProps = { + title?: string; + subtitle?: string; +}; + +export const HomePage = (props: HomePageProps) => { + const { title, subtitle } = props; + const tabContent = [ { path: '/', @@ -35,7 +42,10 @@ export const HomePage = () => { return (