bb-plane-fork/apps/web/app/(all)/onboarding/layout.tsx
sriram veeraghanta 944b873184
chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder

* chore: rename apiserver to server
2025-07-03 00:44:13 +05:30

9 lines
206 B
TypeScript

import { Metadata } from "next";
export const metadata: Metadata = {
title: "Onboarding",
};
export default function OnboardingLayout({ children }: { children: React.ReactNode }) {
return children;
}