Skip to content
Open
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
10 changes: 1 addition & 9 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,7 @@ export function Footer() {
<Link to="/agents">Agents</Link>
</li>
</ul>
<ul className="list-none col-span-4 md:col-span-3 col-start-8 md:col-start-4 flex flex-col pl-0 text-xl md:text-3xl font-brand text-gray-900 ">
<li className="mb-2">
<OutboundLink
className=" hover:text-gray-700"
href="mailto:alex@agent-a-ny.com"
>
Email <FontAwesomeIcon icon={faArrowUpRightFromSquare} />
</OutboundLink>
</li>
<ul className="list-none col-span-4 md:col-span-3 col-start-8 md:col-start-4 flex flex-col pl-0 text-xl md:text-3xl font-brand text-gray-
Copy link

Copilot AI Jan 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The className string is incomplete and truncated at 'text-gray-'. This will result in an invalid CSS class. The className should end with a complete color specification (e.g., 'text-gray-900').

Suggested change
<ul className="list-none col-span-4 md:col-span-3 col-start-8 md:col-start-4 flex flex-col pl-0 text-xl md:text-3xl font-brand text-gray-
<ul className="list-none col-span-4 md:col-span-3 col-start-8 md:col-start-4 flex flex-col pl-0 text-xl md:text-3xl font-brand text-gray-900">

Copilot uses AI. Check for mistakes.
<li className="mb-2">
<OutboundLink
className=" hover:text-gray-500"
Expand Down