Intelidom website
Go to file
Matic Ivešić 22af32c722 Phase 2: multi-tab dashboard shell + user management
- Restructure /admin into a (dashboard) route group with a sidebar shell
  (Galerija / Storitve / Novice / Kontakt / Uporabniki) and active-tab state
- Hide the public site header/footer on all /admin routes
- Centralize auth in hooks.server.ts so page loads, form actions AND endpoints
  are all gated (layout load guards don't cover actions)
- Users section (admin-only): add user, change role, reset password, delete;
  safeguards prevent self-delete and removing the last admin; server-side role
  checks (editors get 403 even if UI hidden)
- Login redirects already-authed users; logout moved to /admin/logout endpoint
- Gallery management moved under /admin/gallery; shared .admin-* styles in app.css
- Fix flexbox overflow in the dashboard main column (min-width:0, box-sizing)
- Placeholder tabs for Services/News/Contact (Phases 3-5)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-08-02 21:13:02 +02:00
drizzle Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
scripts Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
src Phase 2: multi-tab dashboard shell + user management 2026-08-02 21:13:02 +02:00
static Added image-mask to contact element 2025-10-31 23:06:32 +01:00
.env.example Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
.gitignore Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
.npmrc Website redesign 2025-10-21 20:47:58 +02:00
ADMIN_SETUP.md Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
README.md Website redesign 2025-10-21 20:47:58 +02:00
drizzle.config.ts Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
package-lock.json Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
package.json Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
svelte.config.js Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00
tsconfig.json Website redesign 2025-10-21 20:47:58 +02:00
vite.config.ts Phase 1: self-hosted backend (adapter-node + SQLite) replacing Supabase 2026-08-02 20:54:06 +02:00

README.md

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.