chore: remove cn non-default exports

This commit is contained in:
Aarnav Tale
2025-01-28 17:46:16 -05:00
parent 843cfc4d4f
commit c9d8052e39
35 changed files with 62 additions and 76 deletions
+9 -9
View File
@@ -1,8 +1,8 @@
import Link from '~/components/Link';
import Button from '~/components/Button';
import { Link as RemixLink } from 'react-router';
import { ArrowRightIcon } from '@primer/octicons-react';
import { cn } from '~/utils/cn';
import { Link as RemixLink } from 'react-router';
import Button from '~/components/Button';
import Link from '~/components/Link';
import cn from '~/utils/cn';
export default function AgentSection() {
return (
@@ -10,10 +10,10 @@ export default function AgentSection() {
<div className="flex flex-col w-2/3">
<h1 className="text-2xl font-medium mb-4">Local Agent</h1>
<p className="text-gray-700 dark:text-gray-300">
Headplane provides a local agent that can be installed on a
server to provide additional features including viewing device
information and SSH access via the web interface (soon).
To learn more about the agent visit the{' '}
Headplane provides a local agent that can be installed on a server to
provide additional features including viewing device information and
SSH access via the web interface (soon). To learn more about the agent
visit the{' '}
<Link
to="https://github.com/tale/headplane/blob/main/docs/Headplane-Agent.md"
name="Headplane Agent Documentation"
@@ -34,5 +34,5 @@ export default function AgentSection() {
</div>
</RemixLink>
</>
)
);
}