feat: add project settings

This commit is contained in:
Maze Winther
2025-08-02 01:41:46 +02:00
parent cd593d1b98
commit dd09bf2949
7 changed files with 288 additions and 8 deletions
@@ -9,6 +9,7 @@ import {
SlidersHorizontalIcon,
LucideIcon,
TypeIcon,
SettingsIcon,
} from "lucide-react";
import { create } from "zustand";
@@ -21,7 +22,8 @@ export type Tab =
| "transitions"
| "captions"
| "filters"
| "adjustment";
| "adjustment"
| "settings";
export const tabs: { [key in Tab]: { icon: LucideIcon; label: string } } = {
media: {
@@ -60,6 +62,10 @@ export const tabs: { [key in Tab]: { icon: LucideIcon; label: string } } = {
icon: SlidersHorizontalIcon,
label: "Adjustment",
},
settings: {
icon: SettingsIcon,
label: "Settings",
},
};
interface MediaPanelStore {