fix: resolve CI lint and formatting failures.

Replace internal anchor tags with Next.js Link components and format the marketing comparison route page.
This commit is contained in:
yusufipk
2026-06-14 16:42:27 +02:00
parent 51257e004f
commit 56fb7403cf
3 changed files with 7 additions and 9 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
'use client';
import Link from 'next/link';
import { useState } from 'react';
import { signOut } from 'next-auth/react';
import { LogOut } from 'lucide-react';
@@ -29,7 +30,7 @@ export default function SignOutPage() {
{loading ? 'Signing out...' : 'Sign out'}
</Button>
<Button variant="outline" asChild className="w-full">
<a href="/dashboard">Cancel</a>
<Link href="/dashboard">Cancel</Link>
</Button>
</CardContent>
</Card>