Skip to content

Commit 1b40315

Browse files
committed
chore: homepage news
1 parent ac62371 commit 1b40315

2 files changed

Lines changed: 9 additions & 16 deletions

File tree

Website/components/homeview/HomeView.tsx

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ export const HomeView = ({ }: IHomeViewProps) => {
2323

2424
// Carousel data
2525
const carouselItems: CarouselItem[] = [
26+
{
27+
image: '/insights.jpg',
28+
title: 'New Search features!',
29+
text: 'Enhanced global search with customizable scope filters—search across attributes, descriptions, data types, relationships, and more. New security role impersonation lets you filter entities by access permissions, making it easy to understand what data different roles can see. All filters are shareable via URL for seamless collaboration.',
30+
type: '(v2.3.1) Feature Update',
31+
actionlabel: 'Try It Now',
32+
action: () => router.push('/metadata')
33+
},
2634
{
2735
image: '/MSAuthentication.jpg',
2836
title: 'Microsoft Entra ID Authentication!',
@@ -45,22 +53,6 @@ export const HomeView = ({ }: IHomeViewProps) => {
4553
actionlabel: 'Go to Diagrams',
4654
action: () => router.push('/diagram')
4755
},
48-
{
49-
image: '/insights.jpg',
50-
title: 'Insights are here!',
51-
text: "Get insights into your solutions, entities and attributes with the new Insights feature. Analyze your solutions' relationships and shared components to optimize your environment. See bad practices and get recommendations to improve your data model.",
52-
type: '(v2.1.0) Feature Release',
53-
actionlabel: 'Go to Insights',
54-
action: () => router.push('/insights')
55-
},
56-
{
57-
image: '/processes.jpg',
58-
title: 'Webresource support!',
59-
text: "View your attributes used inside your JS webresources in the Processes Explorer. Now supports the getAttribute method with more to come soon.",
60-
type: '(v2.0.1) Feature update',
61-
actionlabel: 'Try it out',
62-
action: () => router.push('/processes')
63-
},
6456
];
6557

6658
const goToPrevious = () => {

Website/components/shared/Sidebar.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ const Sidebar = ({ }: SidebarProps) => {
4747
href: '/metadata',
4848
icon: MetadataIcon,
4949
active: pathname === '/metadata',
50+
new: true,
5051
},
5152
{
5253
label: 'Diagram',

0 commit comments

Comments
 (0)