-
-
-
-
-
-
-
-
-
- );
-};
-
-export default HomePage;
diff --git a/plugins/home-page/src/components/HomePage/SquadTechHealth.tsx b/plugins/home-page/src/components/HomePage/SquadTechHealth.tsx
deleted file mode 100644
index c4e55c4dd5..0000000000
--- a/plugins/home-page/src/components/HomePage/SquadTechHealth.tsx
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import React, { FC } from 'react';
-import { Grid, Typography } from '@material-ui/core';
-
-import { HorizontalScrollGrid, ProgressCard } from '@backstage/core';
-
-const SquadTechHealth: FC<{}> = () => {
- return (
- <>
- Team Metrics
-
-
-
-
-
-
-
-
- >
- );
-};
-
-export default SquadTechHealth;
diff --git a/plugins/home-page/src/components/HomePage/index.ts b/plugins/home-page/src/components/HomePage/index.ts
deleted file mode 100644
index c5a0dcd139..0000000000
--- a/plugins/home-page/src/components/HomePage/index.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-export { default } from './HomePage';
diff --git a/plugins/home-page/src/index.ts b/plugins/home-page/src/index.ts
deleted file mode 100644
index 3a0a0fe2d3..0000000000
--- a/plugins/home-page/src/index.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-export { plugin } from './plugin';
diff --git a/plugins/home-page/src/plugin.test.ts b/plugins/home-page/src/plugin.test.ts
deleted file mode 100644
index aea6b90d2a..0000000000
--- a/plugins/home-page/src/plugin.test.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { plugin } from './plugin';
-
-describe('home-page', () => {
- it('should export plugin', () => {
- expect(plugin).toBeDefined();
- });
-});
diff --git a/plugins/home-page/src/plugin.ts b/plugins/home-page/src/plugin.ts
deleted file mode 100644
index 182d43b9b8..0000000000
--- a/plugins/home-page/src/plugin.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import { createPlugin } from '@backstage/core';
-import HomePage from './components/HomePage';
-
-export const plugin = createPlugin({
- id: 'home-page',
- register({ router }) {
- router.registerRoute('/home', HomePage);
- },
-});
diff --git a/plugins/home-page/src/setupTests.ts b/plugins/home-page/src/setupTests.ts
deleted file mode 100644
index 825bcd4115..0000000000
--- a/plugins/home-page/src/setupTests.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import '@testing-library/jest-dom';