14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Masuk",
|
|
description:
|
|
"Masuk ke akun SeTrip untuk gabung open trip & aktivitas bareng dan kelola perjalananmu.",
|
|
alternates: { canonical: "/login" },
|
|
robots: { index: false, follow: true },
|
|
};
|
|
|
|
export default function LoginLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|