feat: Add Tailwind CSS and navigation generation

- Added Tailwind CSS for styling.
- Implemented automatic navigation data generation from markdown files.
- Created `NavItem` component for rendering navigation items.
- Added scripts for navigation generation and updated build process.
This commit is contained in:
Mahmoud Emad
2025-05-12 11:28:10 +03:00
parent 1651f14152
commit da0ced9b4a
11 changed files with 669 additions and 131 deletions

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"types": [
"node"
],
"outDir": "./dist/scripts",
"rootDir": "./scripts"
},
"include": [
"scripts/**/*"
]
}