layout.tsx 483 B

123456789101112131415161718192021
  1. import type { Metadata } from "next";
  2. export const metadata: Metadata = {
  3. title: "json-render R3F + Gaussian Splatting Example",
  4. description:
  5. "Gaussian splats composed with 3D primitives using @json-render/react-three-fiber",
  6. };
  7. export default function RootLayout({
  8. children,
  9. }: {
  10. children: React.ReactNode;
  11. }) {
  12. return (
  13. <html lang="en">
  14. <body style={{ margin: 0, fontFamily: "system-ui, sans-serif" }}>
  15. {children}
  16. </body>
  17. </html>
  18. );
  19. }