Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Has been cancelled
test / unit (pull_request) Has been cancelled
test / integration (pull_request) Has been cancelled
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Join Thoughts",
|
|
description: "Create an account on Thoughts and connect across the Fediverse",
|
|
};
|
|
|
|
export default function RegisterLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|