import type { Metadata } from "next";
import type { ReactNode } from "react";
import { JacShell } from "@/components/jac-shell";
import { WebVitalsReporter } from "@/components/web-vitals-reporter";
import "./jacquard.css";
export const metadata: Metadata = {
title: "lowell",
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 />
<JacShell>{children}</JacShell>
</body>
</html>
);
}