diff --git a/frontend/src/components/layout/Layout.jsx b/frontend/src/components/layout/Layout.jsx
index c8f7724..02ff1c4 100644
--- a/frontend/src/components/layout/Layout.jsx
+++ b/frontend/src/components/layout/Layout.jsx
@@ -1,13 +1,13 @@
import Navbar from './Navbar';
-const Layout = ({ children, fullWidth = false, noPadding = false }) => {
+const Layout = ({ children, fullWidth = false, noPadding = false, pageTitle = null }) => {
const mainClasses = fullWidth || noPadding
? "flex-1 flex flex-col"
: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8";
return (
-
+
{children}
diff --git a/frontend/src/components/layout/Navbar.jsx b/frontend/src/components/layout/Navbar.jsx
index b39371f..979d4ac 100644
--- a/frontend/src/components/layout/Navbar.jsx
+++ b/frontend/src/components/layout/Navbar.jsx
@@ -7,7 +7,7 @@ import { matchesAPI } from '../../services/api';
import { connectSocket, disconnectSocket, getSocket } from '../../services/socket';
import { MATCH_STATUS } from '../../constants';
-const Navbar = () => {
+const Navbar = ({ pageTitle = null }) => {
const { user, logout } = useAuth();
const navigate = useNavigate();
const [pendingMatchesCount, setPendingMatchesCount] = useState(0);
@@ -67,7 +67,12 @@ const Navbar = () => {
- spotlight.cam
+
+ spotlight.cam
+
+ {pageTitle ? `spotlight.cam - ${pageTitle}` : 'spotlight.cam'}
+
+
{/* Desktop menu */}
diff --git a/frontend/src/pages/DashboardPage.jsx b/frontend/src/pages/DashboardPage.jsx
index 8e0f95a..412eb29 100644
--- a/frontend/src/pages/DashboardPage.jsx
+++ b/frontend/src/pages/DashboardPage.jsx
@@ -160,9 +160,9 @@ const DashboardPage = () => {
const hasOutgoing = matchRequests?.outgoing?.length > 0;
return (
-
+
-
+
Dashboard
Welcome back, {user?.firstName || user?.username}!
diff --git a/frontend/src/pages/EventsPage.jsx b/frontend/src/pages/EventsPage.jsx
index 895e62b..d96dc94 100644
--- a/frontend/src/pages/EventsPage.jsx
+++ b/frontend/src/pages/EventsPage.jsx
@@ -192,10 +192,10 @@ const EventsPage = () => {
};
return (
-
+
-
Choose an event
-
Join an event and start connecting with other dancers
+
Choose an event
+
Join an event and start connecting with other dancers
{canLoadMorePast && (
diff --git a/frontend/src/pages/HistoryPage.jsx b/frontend/src/pages/HistoryPage.jsx
index 618b5e4..74f5770 100644
--- a/frontend/src/pages/HistoryPage.jsx
+++ b/frontend/src/pages/HistoryPage.jsx
@@ -5,10 +5,10 @@ import { MATCH_STATUS } from '../constants';
const HistoryPage = () => {
return (
-
+
-
Collaboration history
-
Your previous matches and ratings
+
Collaboration history
+
Your previous matches and ratings
{/* Matches Section */}
diff --git a/frontend/src/pages/MatchesPage.jsx b/frontend/src/pages/MatchesPage.jsx
index e587989..50de404 100644
--- a/frontend/src/pages/MatchesPage.jsx
+++ b/frontend/src/pages/MatchesPage.jsx
@@ -125,9 +125,9 @@ const MatchesPage = () => {
const otherMatches = filteredMatches.filter(m => !(m.status === MATCH_STATUS.PENDING && !m.isInitiator));
return (
-
+
-
+
Match Requests
Manage your dance partner connections
diff --git a/frontend/src/pages/ProfilePage.jsx b/frontend/src/pages/ProfilePage.jsx
index 6ca2753..4554f3f 100644
--- a/frontend/src/pages/ProfilePage.jsx
+++ b/frontend/src/pages/ProfilePage.jsx
@@ -10,7 +10,7 @@ const ProfilePage = () => {
const [activeTab, setActiveTab] = useState('profile');
return (
-
+