Merge branch 'feat/format-support-expansion'

# Conflicts:
#	README.md
#	apps/web/src/components/layout/app-layout.tsx
This commit is contained in:
SnapOtter
2026-05-08 16:21:11 +08:00
145 changed files with 27402 additions and 100 deletions
+11 -2
View File
@@ -1,5 +1,13 @@
import { FolderOpen, LayoutGrid, Menu, Settings as SettingsIcon, Workflow, X } from "lucide-react";
import { useState } from "react";
import {
FolderOpen,
LayoutGrid,
Menu,
PenTool,
Settings as SettingsIcon,
Workflow,
X,
} from "lucide-react";
import { useEffect, useState } from "react";
import { Link } from "react-router-dom";
import { useMobile } from "@/hooks/use-mobile";
import { cn } from "@/lib/utils";
@@ -128,6 +136,7 @@ export function AppLayout({ children, showToolPanel = true, onFiles }: AppLayout
<nav className="fixed bottom-0 left-0 right-0 z-30 bg-background/95 backdrop-blur-sm border-t border-border flex items-center justify-around px-2 py-1.5">
<MobileNavItem icon={LayoutGrid} label="Tools" href="/" />
<MobileNavItem icon={Workflow} label="Automate" href="/automate" />
<MobileNavItem icon={PenTool} label="Editor" href="/editor" />
<MobileNavItem icon={FolderOpen} label="Files" href="/files" />
<button
type="button"