Files
bim_engine/demo-next/app/layout.tsx

23 lines
473 B
TypeScript
Raw Normal View History

2026-04-21 15:07:49 +08:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "iFlow Engine - Next.js Demo",
description: "iFlow Engine BIM Viewer Demo with Next.js + React",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="zh-CN">
<head>
<script src="/lib/iflow-engine.umd.js" defer></script>
</head>
<body>{children}</body>
</html>
);
}