diff --git a/src/components/UpdatePrompt.jsx b/src/components/UpdatePrompt.jsx index b23992d..17fc29e 100644 --- a/src/components/UpdatePrompt.jsx +++ b/src/components/UpdatePrompt.jsx @@ -37,9 +37,9 @@ export default function UpdatePrompt() {
-
+
{/* Icon */} -
+
@@ -53,13 +53,13 @@ export default function UpdatePrompt() {
diff --git a/src/pages/ProfilePage.jsx b/src/pages/ProfilePage.jsx index 1def462..744cd8f 100644 --- a/src/pages/ProfilePage.jsx +++ b/src/pages/ProfilePage.jsx @@ -2,6 +2,7 @@ import { useContext } from "react"; import { AuthContext } from "../AuthContext"; import { useTheme } from "../ThemeContext"; +import { User, Mail, Contrast, Coffee, Database, MessageSquare } from "lucide-react"; export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus }) { const { logout } = useContext(AuthContext); @@ -18,7 +19,7 @@ export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus {/* Avatar & Name */}
- {user?.username?.[0]?.toUpperCase() || "☕"} + {user?.username?.[0]?.toUpperCase() || }
{user?.username}
{user?.email}
@@ -35,14 +36,14 @@ export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus
Account
- 👤 +
Username
{user?.username}
- ✉️ +
Email
{user?.email}
@@ -51,13 +52,22 @@ export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus
+ {/* Sign out */} +
+ +
+ {/* Appearance Settings section */}
Appearance
- 🌓 +
Theme
Customize your viewing experience
@@ -92,13 +102,13 @@ export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus
- +
Brew Journal
{__APP_VERSION__}
- 🗄️ +
Storage
Local + PostgreSQL
@@ -107,12 +117,27 @@ export default function ProfilePage({ user, isOnline, syncing, showSyncedStatus
- {/* Sign out */} - + {/* Support section */} +
); }