mirror of
https://github.com/bspeice/speice.io
synced 2024-12-22 16:48:10 -05:00
16 lines
324 B
TypeScript
16 lines
324 B
TypeScript
import Blog from "../../../LayoutBlog";
|
|
import { CanvasColor } from "./0-canvas.js";
|
|
|
|
export default function () {
|
|
const Layout = Blog({
|
|
title: "The fractal flame algorithm",
|
|
description: "Explaining the paper",
|
|
published: "2023-06-25",
|
|
});
|
|
return (
|
|
<Layout>
|
|
<CanvasColor />
|
|
</Layout>
|
|
);
|
|
}
|