import { useId } from "react";
import { Intro, IntroFooter } from "./changelog-layout";
import { StarField } from "./stat-field";
function Timeline() {
let id = useId();
return (
);
}
function Glow() {
let id = useId();
return (
);
}
function FixedSidebar({
main,
footer,
}: {
main: React.ReactNode;
footer: React.ReactNode;
}) {
return (
);
}
export function Layout({ children }: { children: React.ReactNode }) {
return (
<>
} footer={} />
{children}
>
);
}