Welcome to Your Dashboard
Your Profile
Username
John Doe
john@example.com
Member Since
November 2024
Bio
Your Reviews & Contributions
You haven’t submitted any reviews yet.
Favorite Tools
You haven’t saved any favorite tools yet.
Your Badges
First Review
5 Reviews
Top Reviewer
Account Settings
Email Notifications
Get notified about new reviews on tools you follow
Weekly Digest
Receive weekly digest of new tools and reviews
Make Profile Public
Allow others to see your reviews and contributions
document.addEventListener(‘DOMContentLoaded’, function() {
const tabs = document.querySelectorAll(‘.dashboard-tab’);
const sections = document.querySelectorAll(‘.dashboard-section’);
tabs.forEach(tab => {
tab.addEventListener(‘click’, function() {
const tabName = this.getAttribute(‘data-tab’);
// Hide all sections
sections.forEach(section => {
section.style.display = ‘none’;
});
// Reset tab styles
tabs.forEach(t => {
t.style.background = ‘white’;
t.style.color = ‘#667eea’;
t.style.border = ‘1px solid #ddd’;
});
// Show selected section
const selectedSection = document.getElementById(tabName + ‘-section’);
if (selectedSection) {
selectedSection.style.display = ‘block’;
}
// Highlight selected tab
this.style.background = ‘#667eea’;
this.style.color = ‘white’;
this.style.border = ‘none’;
});
});
});