diff --git a/apps/web/public/logo-dark.png b/apps/web/public/logo-dark.png index 0bbe5e0..7f7505d 100644 Binary files a/apps/web/public/logo-dark.png and b/apps/web/public/logo-dark.png differ diff --git a/apps/web/public/logo-dark.svg b/apps/web/public/logo-dark.svg new file mode 100644 index 0000000..be1e348 --- /dev/null +++ b/apps/web/public/logo-dark.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/web/public/logo-light.png b/apps/web/public/logo-light.png new file mode 100644 index 0000000..8779c72 Binary files /dev/null and b/apps/web/public/logo-light.png differ diff --git a/apps/web/public/logo-light.svg b/apps/web/public/logo-light.svg new file mode 100644 index 0000000..38e2455 --- /dev/null +++ b/apps/web/public/logo-light.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/web/src/app/(dashboard)/emails/email-details.tsx b/apps/web/src/app/(dashboard)/emails/email-details.tsx index 9626995..b62ee89 100644 --- a/apps/web/src/app/(dashboard)/emails/email-details.tsx +++ b/apps/web/src/app/(dashboard)/emails/email-details.tsx @@ -93,7 +93,7 @@ export default function EmailDetails({ emailId }: { emailId: string }) { {emailQuery.data?.latestStatus !== "SCHEDULED" ? ( -
+
Events History
diff --git a/apps/web/src/app/login/login-page.tsx b/apps/web/src/app/login/login-page.tsx index 146e975..ac59b08 100644 --- a/apps/web/src/app/login/login-page.tsx +++ b/apps/web/src/app/login/login-page.tsx @@ -26,6 +26,7 @@ import { env } from "~/env"; import { BuiltInProviderType, Provider } from "next-auth/providers/index"; import Spinner from "@unsend/ui/src/spinner"; import Link from "next/link"; +import { useTheme } from "@unsend/ui"; const emailSchema = z.object({ email: z @@ -110,15 +111,17 @@ export default function LoginPage({ signIn(provider); }; + const { resolvedTheme } = useTheme(); + return (
Unsend

diff --git a/apps/web/src/components/FullScreenLoading.tsx b/apps/web/src/components/FullScreenLoading.tsx index b6711a3..c6ea56f 100644 --- a/apps/web/src/components/FullScreenLoading.tsx +++ b/apps/web/src/components/FullScreenLoading.tsx @@ -1,9 +1,17 @@ -import { Logo } from "@unsend/ui/src/logo"; +import { useTheme } from "@unsend/ui"; +import Image from "next/image"; export const FullScreenLoading = () => { + const { resolvedTheme } = useTheme(); return (

- + Unsend
); };