Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ const ListItemWithMenu = ({
};

const StartLabel = () => (
<div className="text-xs text-indigo-500 dark:text-indigo-400 bg-indigo-50/50 dark:bg-indigo-950/30 px-1.5 py-0.5 rounded">
Start
<div className="text-xs bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-400 px-2 py-0.5 rounded font-medium">
START
</div>
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const SHOW_PREBUILT_CARDS = process.env.NEXT_PUBLIC_SHOW_PREBUILT_CARDS === 'tru



const ITEMS_PER_PAGE = 6;
const ITEMS_PER_PAGE = 10;

const copilotPrompts = {
"Blog assistant": {
Expand Down Expand Up @@ -363,7 +363,7 @@ export function BuildAssistantSection() {
</Tab>
<Tab key="existing" title="My Assistants">
<div className="pt-4">
<div className="h-96 flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
<div className="flex flex-col bg-white dark:bg-gray-800 rounded-2xl border border-gray-200 dark:border-gray-700 p-4">
{projectsLoading ? (
<div className="flex items-center justify-center h-full text-sm text-gray-500 dark:text-gray-400">
Loading assistants...
Expand All @@ -374,7 +374,7 @@ export function BuildAssistantSection() {
</div>
) : (
<>
<div className="flex-1 overflow-y-auto">
<div className="flex-1">
<div className="space-y-2">
{currentProjects.map((project) => (
<Link
Expand Down