Skip to content

Commit 6d5c080

Browse files
committed
feat(widgets): redesign actor detail widget
1 parent 42ac3f3 commit 6d5c080

8 files changed

Lines changed: 535 additions & 148 deletions

File tree

.mcp.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"mcpServers": {
3+
"storybook": {
4+
"type": "http",
5+
"url": "http://localhost:6007/mcp"
6+
},
7+
"figma": {
8+
"type": "http",
9+
"url": "https://mcp.figma.com/mcp"
10+
},
11+
"notion": {
12+
"type": "sse",
13+
"url": "https://mcp.notion.com/sse"
14+
}
15+
}
16+
}

package-lock.json

Lines changed: 0 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/package-lock.json

Lines changed: 0 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/src/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ body {
1313

1414
/* Theme-aware brand colors */
1515
:root {
16+
font-size: 10px;
1617
--color-code-orange: #FF6B00;
1718
--color-code-bg: rgba(13, 13, 13, 0.05);
1819
--color-code-text: #5d5d5d;

src/web/src/pages/ActorSearch/ActorSearch.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useWidgetProps } from "../../hooks/use-widget-props";
33
import { useWidgetState } from "../../hooks/use-widget-state";
44
import { ActorSearchDetail } from "./ActorSearchDetail";
55
import { WidgetLayout } from "../../components/layout/WidgetLayout";
6-
import { CardContainer, Heading, Message } from "@apify/ui-library";
6+
import { Badge, CardContainer, Heading, Message } from "@apify/ui-library";
77
import { formatPricing } from "../../utils/formatting";
88
import { ActorDetails, Actor } from "../../types";
99
import { ActorCard } from "../../components/actor/ActorCard";
@@ -138,6 +138,7 @@ export const ActorSearch: React.FC = () => {
138138
<Heading type="titleM" mb="space16">
139139
Search results
140140
</Heading>
141+
<Badge>Hello</Badge>
141142
{actors.map((actor: Actor, index: number) => (
142143
<CardContainer header="" mb="space16" key={actor.id}>
143144
<ActorCard

0 commit comments

Comments
 (0)