Datum: 2025-10-05 Geanalyseerde concurrent: Striive.com Ons platform: InterimPlaza (GloryLabs Recruitment Portal)
Striive.com is een professioneel interim opdrachtenplatform met sterke focus op transparantie en gebruiksvriendelijkheid. De analyse identificeert 12 belangrijke features die InterimPlaza kan overnemen of verbeteren om competitief te blijven.
| Feature | Striive | InterimPlaza | Prioriteit | Implementatie | |---------|---------|--------------|-----------|---------------| | Search & Filtering | | Zoekbalk met functie | ✅ | ✅ | ✓ | Gereed | | Locatie filter | ✅ | ✅ | ✓ | Gereed | | Uren per week filter | ✅ | ❌ | HOOG | Toevoegen | | Specialisme/Category filter | ✅ | ✅ | ✓ | Gereed | | Opdrachtgever filter | ✅ | ❌ | MEDIUM | Toevoegen | | Job Display | | List view met bedrijfslogo's | ✅ | ❌ | HOOG | Toevoegen | | Bedrijfsnaam prominent | ✅ | ✅ | ✓ | Gereed | | Locatie met emoji | ✅ | ✅ | ✓ | Gereed | | Inline favorieten | ✅ | ❌ | MEDIUM | Toevoegen | | User Experience | | "Mijn Striive" account | ✅ | ❌ | HOOG | Dashboard | | Opgeslagen opdrachten | ✅ | ❌ | HOOG | Favorites | | Meerdere inschrijf opties | ✅ | ❌ | MEDIUM | Quick apply | | "Maak een account" CTA | ✅ | ✅ | ✓ | Gereed | | Trust & Credibility | | Client logos prominent | ✅ | ❌ | HOOG | Homepage | | Testimonials | ✅ | ❌ | MEDIUM | Homepage | | Stats (opdrachten/maand) | ✅ | ❌ | MEDIUM | Homepage | | Additional Features | | Tariefcalculator | ✅ | ❌ | LAAG | Nice-to-have | | Persoonlijk contact | ✅ | ❌ | MEDIUM | Contact form | | "Hoe werkt Striive" | ✅ | ❌ | LAAG | Info page |
Wat: Filter op fulltime/parttime/flexibel met voorkeursopties (24u, 32u, 40u+)
Waarom:
Implementatie:
// Job model uitbreiden
interface Job {
// ... bestaande velden
hoursPerWeek?: 'FLEX' | '24' | '32' | '40+';
minHours?: number;
maxHours?: number;
}
// Filter component
const hoursOptions = [
{ value: 'FLEX', label: 'Geen voorkeur' },
{ value: '24', label: '24u' },
{ value: '32', label: '32u' },
{ value: '40+', label: '40u+' }
];
Backend impact:
jobs tabel: hours_per_week, min_hours, max_hoursWat: Persoonlijk dashboard voor ingelogde gebruikers
Features:
Waarom:
Implementatie:
/dashboardfavorites tabel (user_id, job_id, saved_at)Wat: Prominente weergave van opdrachtgevers op homepage
Features:
Waarom:
Implementatie:
ClientLogosComponentWat: Toon bedrijfslogo naast elke vacature
Waarom:
Implementatie:
interface Job {
// ... bestaande velden
companyLogo?: string; // URL naar logo
}
Frontend:
<div class="job-card">
<img *ngIf="job.companyLogo"
[src]="job.companyLogo"
[alt]="job.company"
class="company-logo">
<h3>{{ job.title }}</h3>
<!-- ... -->
</div>
Wat: Dropdown met lijst van bedrijven
Implementatie:
extractFilterOptions(): void {
this.companies = [...new Set(this.jobs.map(job => job.company))];
}
Wat: "Hart" icoon in elke job card om op te slaan
Implementatie:
/api/jobs/{id}/favoriteuser_favorites tabelWat: "Snel solliciteren" knop met vooraf ingevuld profiel
Waarom:
Wat: "Wat Striive-gebruikers zeggen" met quotes + foto's
Implementatie:
TestimonialsComponentWat: "Bereken mijn tarief" tool voor professionals
Waarom:
Wat: "Persoonlijk contact & advies" sectie
Features:
Wat: Uitleg van proces voor nieuwe gebruikers
Features:
Wat: Live cijfers op homepage
Features:
New Components:
DashboardComponentFavoritesComponentClientLogosComponentTestimonialsComponentStatsComponentUpdated Components:
JobListComponent - Uren filter, company logosJobCardComponent - Favorite buttonHeaderComponent - Dashboard linkNew Services:
FavoritesServiceStatsServiceNew Entities:
Favorite (user_id, job_id, created_at)Testimonial (name, role, quote, photo, rating)Client (name, logo, featured)New Endpoints:
POST /api/jobs/{id}/favorite
DELETE /api/jobs/{id}/favorite
GET /api/favorites
GET /api/stats
GET /api/clients/featured
GET /api/testimonials
Database Migration:
ALTER TABLE jobs ADD COLUMN hours_per_week VARCHAR(10);
ALTER TABLE jobs ADD COLUMN min_hours INT;
ALTER TABLE jobs ADD COLUMN max_hours INT;
ALTER TABLE jobs ADD COLUMN company_logo VARCHAR(500);
CREATE TABLE favorites (
id BIGSERIAL PRIMARY KEY,
user_id BIGINT REFERENCES users(id),
job_id BIGINT REFERENCES jobs(id),
created_at TIMESTAMP DEFAULT NOW(),
UNIQUE(user_id, job_id)
);
CREATE TABLE clients (
id BIGSERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL,
logo_url VARCHAR(500),
featured BOOLEAN DEFAULT FALSE,
display_order INT
);
Na implementatie van deze features:
Conversie:
Engagement:
Features Gebruik:
Trust:
Striive.com heeft een mature, professional platform met sterke focus op:
InterimPlaza kan competitief blijven door:
Geschatte tijdsinvestering: 4-6 weken voor alle HOOG + MEDIUM priority features.
ROI Verwachting:
Volgende Stappen:
Reacties