diff --git a/packages/app/src/components/catalog/EntityPage.tsx b/packages/app/src/components/catalog/EntityPage.tsx
index 1c7a08e362..b56268036f 100644
--- a/packages/app/src/components/catalog/EntityPage.tsx
+++ b/packages/app/src/components/catalog/EntityPage.tsx
@@ -18,12 +18,12 @@ import React from 'react';
import {
EntityPageLayout,
useEntity,
- EntityMetadataCard,
+ AboutCard,
} from '@backstage/plugin-catalog';
import { Entity } from '@backstage/catalog-model';
const OverviewPage = ({ entity }: { entity: Entity }) => (
-
+
);
const ServiceEntityPage = ({ entity }: { entity: Entity }) => (
diff --git a/packages/create-app/templates/default-app/packages/app/src/components/catalog/EntityPage.tsx b/packages/create-app/templates/default-app/packages/app/src/components/catalog/EntityPage.tsx
index 1c7a08e362..b56268036f 100644
--- a/packages/create-app/templates/default-app/packages/app/src/components/catalog/EntityPage.tsx
+++ b/packages/create-app/templates/default-app/packages/app/src/components/catalog/EntityPage.tsx
@@ -18,12 +18,12 @@ import React from 'react';
import {
EntityPageLayout,
useEntity,
- EntityMetadataCard,
+ AboutCard,
} from '@backstage/plugin-catalog';
import { Entity } from '@backstage/catalog-model';
const OverviewPage = ({ entity }: { entity: Entity }) => (
-
+
);
const ServiceEntityPage = ({ entity }: { entity: Entity }) => (
diff --git a/plugins/catalog/src/index.ts b/plugins/catalog/src/index.ts
index d0e9778a00..26285b4814 100644
--- a/plugins/catalog/src/index.ts
+++ b/plugins/catalog/src/index.ts
@@ -21,5 +21,5 @@ export * from './routes';
export { useEntityCompoundName } from './components/useEntityCompoundName';
export * from './Router';
export { useEntity } from './hooks/useEntity';
-export { EntityMetadataCard } from './components/EntityMetadataCard/EntityMetadataCard';
+export { AboutCard } from './components/AboutCard';
export { EntityPageLayout } from './components/EntityPageLayout';