2023-05-25 12:37:14 +00:00
|
|
|
import { NextPage } from "next";
|
|
|
|
|
import { LeafcutterWrapper } from "components/LeafcutterWrapper";
|
2022-12-02 17:45:14 +01:00
|
|
|
|
2023-05-25 12:37:14 +00:00
|
|
|
const About: NextPage = () => <LeafcutterWrapper path="about" />;
|
2022-12-02 17:45:14 +01:00
|
|
|
|
2023-03-15 12:17:43 +00:00
|
|
|
export default About;
|