interactives/src/pages/theme-pages/SocialChoice.tsx
gpt-engineer-app[bot] fb7bb4aca4 feat: Implement website structure
- Add navigation with Themes, Puzzles, and Miscellany.
- Create "coming soon" pages for Puzzles and Miscellany.
- Create a Themes page with cards for various topics.
- Implement basic boxy layout.
- Prepare for future interactive additions and filtering.
- Set up for Netlify deployment.
2025-07-19 13:01:09 +00:00

12 lines
No EOL
383 B
TypeScript

import ComingSoon from "@/components/ComingSoon";
const SocialChoice = () => {
return (
<ComingSoon
title="Social Choice Theory"
description="Understand voting systems, fairness criteria, and collective decision-making through interactive simulations. Explore Arrow's theorem, voting paradoxes, and electoral systems."
/>
);
};
export default SocialChoice;