feat: page metadata

This commit is contained in:
trafficlunar 2025-04-25 21:09:42 +01:00
parent 2e9e4db6cb
commit dc38d2bc28
12 changed files with 182 additions and 4 deletions

View file

@ -1,7 +1,13 @@
import { Metadata } from "next";
import { redirect } from "next/navigation";
import { auth } from "@/lib/auth";
import UsernameForm from "@/components/username-form";
export const metadata: Metadata = {
title: "Create your Username - TomodachiShare",
description: "Pick a unique username to start using TomodachiShare",
};
export default async function CreateUsernamePage() {
const session = await auth();