13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Daftar Akun",
|
|
description:
|
|
"Buat akun SeTrip gratis. Cari open trip & aktivitas bareng, gabung bareng, dan mulai petualanganmu.",
|
|
alternates: { canonical: "/register" },
|
|
};
|
|
|
|
export default function RegisterLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|