14 lines
479 B
TypeScript
14 lines
479 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Buat Open Trip",
|
|
description:
|
|
"Buat open trip di SeTrip — hiking, camping, snorkeling, city trip, dan aktivitas bareng lainnya. Atur itinerary, harga, dan ajak orang lain ikut serta.",
|
|
alternates: { canonical: "/create-trip" },
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function CreateTripLayout({ children }: { children: React.ReactNode }) {
|
|
return children;
|
|
}
|