diff --git a/plugins/scaffolder/src/components/ScaffolderPage/index.tsx b/plugins/scaffolder/src/components/ScaffolderPage/index.tsx
index aa1cf36082..d675b59f52 100644
--- a/plugins/scaffolder/src/components/ScaffolderPage/index.tsx
+++ b/plugins/scaffolder/src/components/ScaffolderPage/index.tsx
@@ -20,23 +20,33 @@ import {
Content,
ContentHeader,
Header,
+ SupportButton,
Page,
pageTheme,
} from '@backstage/core';
-import { Typography, Link, Button } from '@material-ui/core';
+import { Button, Grid, Link, Typography } from '@material-ui/core';
import { Link as RouterLink } from 'react-router-dom';
import TemplateCard from '../TemplateCard';
// TODO(blam): Connect to backend
const STATIC_DATA = [
+ {
+ id: 'springboot-template',
+ type: 'service',
+ name: 'Spring Boot Service',
+ tags: ['Recommended', 'Java'],
+ description:
+ 'Standard Spring Boot (Java) microservice with recommended configuration.',
+ ownerId: 'spotify',
+ },
{
id: 'react-ssr-template',
- type: 'web-infra',
+ type: 'website',
name: 'SSR React Website',
- tags: ['Experimental'],
+ tags: ['Recommended', 'React'],
description:
'Next.js application skeleton for creating isomorphic web applications.',
- ownerId: 'something',
+ ownerId: 'spotify',
},
];
const ScaffolderPage: React.FC<{}> = () => {
@@ -46,7 +56,7 @@ const ScaffolderPage: React.FC<{}> = () => {
pageTitleOverride="Create a new component"
title={
<>
- Create a new component