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.

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.

OrderModuleGlobal
1HeaderYes
2HeroNo
3ProjectsNo
4CoursesNo
5CustomersNo
6NewsletterNo
7FooterYes