diff --git a/public/images/logo-tcg-love.png b/public/images/logo-tcg-love.png new file mode 100644 index 0000000..54ab053 Binary files /dev/null and b/public/images/logo-tcg-love.png differ diff --git a/src/app/admin/AdminClient.tsx b/src/app/admin/AdminClient.tsx index 42c8212..9125a75 100644 --- a/src/app/admin/AdminClient.tsx +++ b/src/app/admin/AdminClient.tsx @@ -37,81 +37,85 @@ export default function AdminClient({ email }: AdminClientProps) { }; return ( -
-
-

Admin Page

-

Welcome, {email}!

- +
+
+

Admin Dashboard

+

Welcome, {email}!

+ {/* Create Giveaway Form */} -
-

Create Giveaway

+
+

🎁 Create Giveaway

+
setGiveaway({ ...giveaway, title: e.target.value })} - className="block w-full mt-2 p-2 border rounded bg-gray-700 text-gray-200" + type="text" + placeholder="Giveaway Title" + value={giveaway.title} + onChange={(e) => setGiveaway({ ...giveaway, title: e.target.value })} + className="w-full p-3 border border-pink-200 rounded-lg bg-white text-gray-700 focus:outline-none focus:ring-2 focus:ring-pink-400" />