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
2 changes: 1 addition & 1 deletion frontend/src/app/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export default function SettingsPage() {
{checkingStatus ? (
// Skeleton loading state
<>
{[1, 2, 3, 4, 5, 6].map((i) => (
{[1, 2, 3, 4, 5, 6, 7].map((i) => (
<div
key={i}
className="relative bg-background dark:bg-card/50 border border-border rounded-[16px] p-5 flex flex-col justify-between"
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/components/ProviderIcons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,9 @@ export const SpotifyIcon = () => (
<path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.42 1.56-.299.421-1.02.599-1.559.3z" />
</svg>
);

export const LinkedInIcon = () => (
<svg viewBox="0 0 24 24" className="w-6 h-6" fill="currentColor">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" />
</svg>
);
10 changes: 10 additions & 0 deletions frontend/src/lib/tools-providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
SlackIcon,
XIcon,
SpotifyIcon,
LinkedInIcon,
} from "../components/ProviderIcons";

// Centralized tools configuration for providers
Expand Down Expand Up @@ -103,6 +104,15 @@ export const toolsProviders: ToolProvider[] = [
enabled: true,
tools: [],
},
{
id: "linkedin",
name: "LinkedIn",
description: "Integrate with LinkedIn",
icon: LinkedInIcon,
scopes: ["w_member_social"],
enabled: true,
tools: [],
},
];

export default toolsProviders;