DocsSettings
Settings
Open the admin panel, tune Tailwind tokens, and configure modules after installation.
You installed Warriorfolio — now make it your own. This chapter covers the first things operators touch: panel access, visual tokens, global modules, and content systems.
#On this page
Admin panel
URL pattern: {APP_URL}/admin. Default Filament login; /login redirects to Filament login.
Change seeder credentials before exposing the application.
Theme colors (Tailwind)
Warriorfolio uses Tailwind via Vite. Extend the palette in tailwind.config.js:
javascript
1theme: {2 extend: {3 colors: {4 primary: colors.purple,5 secondary: colors.zinc,6 tertiary: colors.rose,7 }8 },9},Module attachment
Header and Footer are natural fits to repeat everywhere. Hero, Projects, Courses, Customers, and Newsletter often vary per page.
| Order | Module | Global |
|---|---|---|
| 1 | Header | Yes |
| 2 | Hero | No |
| 3 | Projects | No |
| 4 | Courses | No |
| 5 | Customers | No |
| 6 | Newsletter | No |
| 7 | Footer | Yes |