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() { router.push('/pdf')} > @@ -152,7 +152,7 @@ export default function UploadPageClient() { Generate Website > diff --git a/app/[username]/loading.tsx b/app/[username]/loading.tsx index 91b47d0..e9500f7 100644 --- a/app/[username]/loading.tsx +++ b/app/[username]/loading.tsx @@ -1,27 +1,27 @@ export default function LoadingUsernamePage() { return ( - - - + + + - - - + + + - + - - + + diff --git a/app/[username]/page.tsx b/app/[username]/page.tsx index ef76693..cdae94a 100644 --- a/app/[username]/page.tsx +++ b/app/[username]/page.tsx @@ -85,10 +85,10 @@ export default async function ProfilePage({ Made by{' '} - + Self.so diff --git a/app/layout.tsx b/app/layout.tsx index b5ea15d..be52fb7 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -4,6 +4,7 @@ import { ClerkProvider } from '@clerk/nextjs'; import './globals.css'; import { Toaster } from '@/components/ui/sonner'; import { ReactQueryClientProvider } from '@/components/ReactQueryClientProvider'; +import { ThemeProvider } from '@/components/theme-provider'; import { Metadata } from 'next'; import PlausibleProvider from 'next-plausible'; @@ -39,8 +40,15 @@ export default function RootLayout({ {/* rest of your scripts go under */} - {children} - + + {children} + +