import { Layout } from "./_components/_layout";
import { useId } from "react";
import { Intro, IntroFooter } from "./_components/changelog-layout";
import { StarField } from "./_components/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 (
);
}
const ChangeLogLayout = ({ children }: { children: React.ReactNode }) => {
return (
);
};
export default ChangeLogLayout;