v-ngu / backstage-plugin-bulletin-board

Bulletin Board is a Backstage plugin that allows you to share interesting ideas, news and links with your teammates.
MIT License
17 stars 8 forks source link

Custom title and subtitle #22

Closed felipe-nardon closed 1 year ago

felipe-nardon commented 1 year ago

Hello!! Thanks for the plugin! I'm using in my company. It's is very useful! Could you add custom title and subtitle?

Like this:

type Props = {
  title?: string;
  subtitle?: string;
};
export const BulletinBoardPage = (props: Props) => {

...

<Header title={props.title ?? 'Bulletin Board'} subtitle={props.subtitle ?? 'A basic place to share ideas and links with your team.'} />

Thank You!!!

v-ngu commented 1 year ago

Thanks! It's good to hear that you like the plugin.

It isn't a feature other plugins seem to follow. If you have examples please share them.

felipe-nardon commented 1 year ago

Sure!

Explore plugin

SplunkOnCall plugin

Bazaar plugin

Playlist plugin

Apollo Explorer plugin

Settings plugin

GraphQL Voyager plugin

Tech Radar plugin

v-ngu commented 1 year ago

Nice! Thanks for sharing. Would you like to make the contribution yourself? There is a contributing doc to let you know how. Otherwise I can do it as well.

felipe-nardon commented 1 year ago

Of course!

I'll open a pull request!

Thanks

v-ngu commented 1 year ago

Thanks for everything