Implement about page

This commit is contained in:
adilallo
2026-05-13 23:08:36 -06:00
parent d2dfa099a2
commit b6b9b63608
69 changed files with 1834 additions and 28 deletions
@@ -0,0 +1,16 @@
"use client";
import { memo } from "react";
import ShapesView from "./Shapes.view";
import type { ShapesProps } from "./Shapes.types";
/**
* Figma: "Shapes" (22851-36508) — **Card / Stat** decorative shapes (`assets/shapes/stat-shape-*.svg`).
*/
const ShapesContainer = memo<ShapesProps>((props) => {
return <ShapesView {...props} />;
});
ShapesContainer.displayName = "Shapes";
export default ShapesContainer;