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
+18
View File
@@ -34,6 +34,21 @@ export function vectorMarkPath(slug: string): string {
return `assets/vector/${slug}.svg`;
}
/**
* Stat card decorative shapes in `public/assets/shapes/`
* (`stat-shape-1.svg` … `stat-shape-4.svg`, kebab-case — Figma **Card / Stat**).
*/
export function statShapeAssetPath(index: 1 | 2 | 3 | 4): string {
return `assets/shapes/stat-shape-${index}.svg`;
}
/**
* Statement / Section-Quote flanking ornaments (`public/assets/shapes/shape-qoute.svg`).
*/
export function quoteStatementShapePath(): string {
return "assets/shapes/shape-qoute.svg";
}
/**
* Asset paths for common components
*/
@@ -65,6 +80,9 @@ export const ASSETS = {
CONTENT_SHAPE_1: "assets/Content_Shape_1.svg",
CONTENT_SHAPE_2: "assets/Content_Shape_2.svg",
/** Sections / Book cover (Figma **22137:891197**). */
COMMUNITYRULES_COVER: "assets/communityrules-cover.svg",
// Alert icons
ICON_ALERT: "assets/Icon_Alert.svg",
ICON_CLOSE: "assets/Icon_Close.svg",