Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
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
14 lines
358 B
TypeScript
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>
|
|
)
|
|
}
|