jacquardSnapshot

← snapshot

773 bytes
import type { Metadata } from "next";
import type { ReactNode } from "react";
import { JacShell } from "@/components/jac-shell";
import { BugReporter } from "@/components/bug-reporter";
import { WebVitalsReporter } from "@/components/web-vitals-reporter";
import "./jacquard.css";

export const metadata: Metadata = {
  title: "lovelace",
  description:
    "The mill built on jacquard: a version-control substrate where decisions are objects, provenance is identity, and only a human can attest.",
};

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="en">
      <body style={{ margin: 0 }}>
        <WebVitalsReporter />
        <BugReporter />
        <JacShell>{children}</JacShell>
      </body>
    </html>
  );
}