deckhearth/pages/settings.js
Randall Stillwell e75a4a6649 Major redesign: Enhanced card display with particle effects, improved filters, and search functionality
- Redesigned card display with 2.5:3.5 aspect ratio and image-only view
- Added infinite scroll to replace pagination
- Implemented authentic card back placeholders for MTG, Pokemon, and Lorcana
- Added rarity-based particle effects with tiered intensity (mythic/enchanted/rare/uncommon)
- Enhanced hover details panel with structured card information
- Fixed search functionality with debouncing and Enter key support
- Improved filter system with working TCG, rarity, set, and price filters
- Added favorite system for cards in both hover and detail views
- Updated card detail page with comprehensive metadata and actions
- Fixed API filtering with proper Vercel Postgres implementation
- Added particle animations and rarity glow effects
- Improved overall UX with better visual hierarchy and interactions
2025-07-23 21:26:54 -05:00

27 lines
No EOL
781 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from '../components/Layout';
export default function Settings() {
const user = {
email: 'me@randallstillwell.com',
role: 'user'
};
return (
<Layout user={user}>
<div className="p-6">
<div className="text-center py-12">
<div className="text-6xl mb-4"></div>
<h1 className="text-3xl font-bold mb-4" style={{ color: 'var(--text-primary-light)' }}>
Settings
</h1>
<p className="text-lg mb-6" style={{ color: 'var(--text-secondary-light)' }}>
Manage your account and preferences
</p>
<p className="text-sm" style={{ color: 'var(--text-secondary-light)' }}>
Coming soon...
</p>
</div>
</div>
</Layout>
);
}