diff --git a/src/admin/SignInOrUploadClient.tsx b/src/admin/SignInOrUploadClient.tsx index 3ff37283..d6a04e31 100644 --- a/src/admin/SignInOrUploadClient.tsx +++ b/src/admin/SignInOrUploadClient.tsx @@ -17,6 +17,7 @@ export default function SignInOrUploadClient({ return (
{isCheckingAuth diff --git a/src/photo/PhotosEmptyState.tsx b/src/photo/PhotosEmptyState.tsx index d2cfea26..97c10bce 100644 --- a/src/photo/PhotosEmptyState.tsx +++ b/src/photo/PhotosEmptyState.tsx @@ -8,49 +8,56 @@ import { revalidatePath } from 'next/cache'; import SignInOrUploadClient from '@/admin/SignInOrUploadClient'; import Link from 'next/link'; import { PATH_ADMIN_CONFIGURATION } from '@/app/paths'; +import AnimateItems from '@/components/AnimateItems'; export default function PhotosEmptyState() { return ( - -
- {!IS_SITE_READY ? 'Finish Setup' : 'Setup Complete!'} -
- {!IS_SITE_READY - ? - :
- { - 'use server'; - // Update upload count in admin nav - revalidatePath('/admin', 'layout'); - }} + + -
- Change this site's name and other configuration - by editing environment variables referenced in - {' '} - - /admin/configuration - +
+ {!IS_SITE_READY ? 'Finish Setup' : 'Setup Complete!'}
-
} - } + {!IS_SITE_READY + ? + :
+ { + 'use server'; + // Update upload count in admin nav + revalidatePath('/admin', 'layout'); + }} + /> +
+ Change this site's name and other configuration + by editing environment variables referenced in + {' '} + + /admin/configuration + +
+
} + , + ]} + /> + } /> ); };