mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 13:42:41 +03:00
df694819fa
* fix: Types * chore: Restructure * feature: Hero Section * feature: Navbar * feature: Tertiary Button * feature: Add Video * fix: Video responsive * feature: Dark Mode toggle * fix: Contrast * feature: Store dark mode in localstorage * style: Colors and bg blur
5 lines
88 B
TypeScript
5 lines
88 B
TypeScript
export type Message = {
|
|
type: "success" | "error" | "warning";
|
|
text: string;
|
|
};
|