Skip to content

Commit 5ee7759

Browse files
Remove pricing link from dashboard
Removes the "Tarifs" link from the dashboard header, as per feedback.
1 parent e8fa47b commit 5ee7759

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/components/DashboardHeader.tsx

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ export const DashboardHeader = ({ user, onLogout }: DashboardHeaderProps) => {
3333

3434
{/* Desktop Navigation */}
3535
<div className="hidden lg:flex items-center space-x-4">
36-
<a
37-
href="/pricing"
38-
className="text-sm text-slate-700 hover:text-slate-900 px-3 py-2 rounded-md transition-colors"
39-
>
40-
Tarifs
41-
</a>
4236
<div className="text-sm text-slate-700 bg-white/80 backdrop-blur-sm px-4 py-2 rounded-full border border-slate-200">
4337
Bonjour, <span className="font-semibold">{user?.displayName || user?.email}</span>
4438
</div>
@@ -69,12 +63,6 @@ export const DashboardHeader = ({ user, onLogout }: DashboardHeaderProps) => {
6963
{isMobileMenuOpen && (
7064
<div className="lg:hidden border-t border-slate-200/80 bg-white/95 backdrop-blur-xl rounded-b-lg">
7165
<div className="py-4 space-y-3">
72-
<a
73-
href="/pricing"
74-
className="block text-sm text-slate-700 hover:text-slate-900 px-4 py-2 rounded-lg transition-colors"
75-
>
76-
Tarifs
77-
</a>
7866
<div className="text-sm text-slate-700 px-4 py-2 bg-slate-50 rounded-lg">
7967
Bonjour, <span className="font-semibold">{user?.displayName || user?.email}</span>
8068
</div>

0 commit comments

Comments
 (0)