feat: add Data Cards feature with CRUD operations and UI integration

This commit is contained in:
2026-03-01 13:28:40 +01:00
parent b4528920da
commit f4ce115a95
6 changed files with 822 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import React, { createContext, useContext, useState } from "react";
export type Route = "home" | "text" | "image";
export type Route = "home" | "text" | "image" | "datacards";
interface RouterContextValue {
route: Route;