speice.io/posts/2023/06/flam3/index.tsx

24 lines
594 B
TypeScript
Raw Normal View History

2023-06-25 21:56:33 -04:00
import Blog from "../../../LayoutBlog";
import { Canvas } from "./0-utility";
import { gasket } from "./1-gasket";
2023-07-01 00:38:15 -04:00
import { renderBaseline } from "./2a-variations";
import { renderPost } from "./2b-post";
import { renderFinal } from "./2c-final";
2023-06-25 21:56:33 -04:00
export default function () {
const Layout = Blog({
title: "The fractal flame algorithm",
description: "Explaining the paper",
published: "2023-06-25",
});
return (
<Layout>
<Canvas f={gasket} />
<Canvas f={renderBaseline} />
2023-07-01 00:38:15 -04:00
<Canvas f={renderPost} />
<Canvas f={renderFinal} />
2023-06-25 21:56:33 -04:00
</Layout>
);
}