cellex-web / src /app /template.tsx
eeshaAI
feat: Migrate frontend from static HTML to Next.js 16 App Router
a09d2a4
Raw
History Blame Contribute Delete
200 Bytes
/**
* Template — passthrough.
* Standard Next.js navigation. No custom transitions.
*/
export default function Template({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}