feat: Add Tailwind CSS and UI components

- Updated project to use Tailwind CSS for styling.
- Added new UI components including Navbar, Sidebar, Footer,
  Accordion, and Button.
- Created markdown content page for documentation.
- Improved overall structure and design of the application.
This commit is contained in:
Mahmoud Emad
2025-05-11 16:10:53 +03:00
parent 373820ec8a
commit 4c6ce31b20
35 changed files with 2986 additions and 132 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { resolve } from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
resolve: {
alias: {
$lib: resolve('./src/lib')
}
}
})