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.
This commit is contained in:
parent
9debcb7e0b
commit
fb7bb4aca4
18 changed files with 682 additions and 42 deletions
12
src/pages/Puzzles.tsx
Normal file
12
src/pages/Puzzles.tsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import ComingSoon from "@/components/ComingSoon";
|
||||
|
||||
const Puzzles = () => {
|
||||
return (
|
||||
<ComingSoon
|
||||
title="Interactive Puzzles"
|
||||
description="Get ready for an engaging collection of educational puzzles designed to challenge your problem-solving skills and reinforce key concepts across multiple disciplines."
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export default Puzzles;
|
||||
Loading…
Add table
Add a link
Reference in a new issue