diff --git a/app/(private)/upload/client.tsx b/app/(private)/upload/client.tsx index 2761726..c00b6de 100644 --- a/app/(private)/upload/client.tsx +++ b/app/(private)/upload/client.tsx @@ -2,7 +2,7 @@ import { Button } from '@/components/ui/button'; import { Dropzone } from '@/components/ui/dropzone'; -import { Linkedin, X } from 'lucide-react'; +import { FileText, X } from 'lucide-react'; import { useRouter } from 'next/navigation'; import { toast } from 'sonner'; import { @@ -74,10 +74,10 @@ export default function UploadPageClient() { {fileState.status !== 'empty' && ( )} @@ -86,20 +86,20 @@ export default function UploadPageClient() { maxFiles={1} icon={ fileState.status !== 'empty' ? ( - + ) : ( - + ) } title={ - + {fileState.status !== 'empty' ? fileState.file.name : 'Upload PDF'} } description={ - + {fileState.status !== 'empty' ? `${(fileState.file.size / 1024 / 1024).toFixed(2)} MB` : 'Resume or LinkedIn'} @@ -138,7 +138,7 @@ export default function UploadPageClient() {
-

+

Takes 1 minute!

@@ -72,7 +72,7 @@ export default function Home() { {/* Right side - Preview */}
-
+
{ viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg" - className={cn('animate-spin', className)} + className={cn('animate-spin text-foreground', className)} > diff --git a/components/Footer.tsx b/components/Footer.tsx index 3af9479..f75f546 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,13 +1,13 @@ export function Footer() { return ( -