mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-11 16:07:00 +02:00
20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
"use client";
|
|
|
|
import { UpdateProfileForm } from "@/components/UpdateProfileForm";
|
|
import { useEffect } from "react";
|
|
|
|
export default function OnboardingCreateProfile() {
|
|
useEffect(() => {
|
|
document.title = `Create Profile | LUMINA`;
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<div className="flex flex-col items-center py-6 px-6">
|
|
<h1>Step 2: Create Profile</h1>
|
|
<UpdateProfileForm />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|