fediversion/frontend/app/onboarding/page.tsx
fullsizemalt c1c041bbe9
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
feat: Add user vertical preferences API and onboarding UI
Backend:
- Add routers/verticals.py with CRUD endpoints
- GET /verticals - list all bands
- POST /verticals/preferences/bulk - onboarding bulk set
- CRUD for individual preferences

Frontend:
- Add BandOnboarding component with checkbox grid
- Add /onboarding page route
- Calls bulk preferences API on submit
2025-12-28 16:04:18 -08:00

14 lines
358 B
TypeScript

import { BandOnboarding } from "@/components/onboarding/band-onboarding"
export const metadata = {
title: "Pick Your Bands | Fediversion",
description: "Select the bands you want to follow on Fediversion"
}
export default function OnboardingPage() {
return (
<div className="py-8">
<BandOnboarding />
</div>
)
}