Compare commits
No commits in common. "3e8778a776a5867a8d4ade75b002d8a486b710a2" and "178d1259b5cb6d38590b15305b55b97c0618f647" have entirely different histories.
3e8778a776
...
178d1259b5
@ -8,25 +8,23 @@ import Link from "next/link"
|
|||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import { Badge } from "@/components/ui/badge"
|
import { Badge } from "@/components/ui/badge"
|
||||||
import {
|
import {
|
||||||
Shield,
|
LayoutDashboard,
|
||||||
FileText,
|
FileText,
|
||||||
Folder,
|
Folder,
|
||||||
|
Search,
|
||||||
Users,
|
Users,
|
||||||
Settings,
|
Settings,
|
||||||
Search,
|
Shield,
|
||||||
MessageCircle,
|
MessageSquare,
|
||||||
Bell,
|
Bell,
|
||||||
User,
|
|
||||||
LogOut,
|
LogOut,
|
||||||
Menu,
|
Menu,
|
||||||
X,
|
X,
|
||||||
ChevronDown,
|
TestTube,
|
||||||
ChevronRight,
|
ChevronRight,
|
||||||
Home,
|
Home,
|
||||||
Key,
|
Key,
|
||||||
LayoutDashboard,
|
} from "lucide-react"
|
||||||
TestTube,
|
|
||||||
} from "@/lib/icons"
|
|
||||||
import UserStore from "@/lib/4nk/UserStore"
|
import UserStore from "@/lib/4nk/UserStore"
|
||||||
import { iframeUrl } from "../page"
|
import { iframeUrl } from "../page"
|
||||||
import EventBus from "@/lib/4nk/EventBus"
|
import EventBus from "@/lib/4nk/EventBus"
|
||||||
|
|||||||
@ -28,7 +28,7 @@ import {
|
|||||||
FolderPlus,
|
FolderPlus,
|
||||||
XCircle,
|
XCircle,
|
||||||
Info,
|
Info,
|
||||||
} from "@/lib/icons"
|
} from "lucide-react"
|
||||||
import MessageBus from "@/lib/4nk/MessageBus"
|
import MessageBus from "@/lib/4nk/MessageBus"
|
||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
import Chat from "@/components/4nk/Chat"
|
import Chat from "@/components/4nk/Chat"
|
||||||
|
|||||||
@ -11,35 +11,30 @@ import { Textarea } from "@/components/ui/textarea"
|
|||||||
import { Switch } from "@/components/ui/switch"
|
import { Switch } from "@/components/ui/switch"
|
||||||
import {
|
import {
|
||||||
User,
|
User,
|
||||||
Mail,
|
|
||||||
Phone,
|
|
||||||
MapPin,
|
|
||||||
Calendar,
|
|
||||||
Globe,
|
|
||||||
Save,
|
|
||||||
Edit,
|
|
||||||
Trash2,
|
|
||||||
Eye,
|
|
||||||
EyeOff,
|
|
||||||
Shield,
|
Shield,
|
||||||
Key,
|
|
||||||
Bell,
|
Bell,
|
||||||
Settings as SettingsIcon,
|
Palette,
|
||||||
|
Globe,
|
||||||
|
Database,
|
||||||
|
Key,
|
||||||
Download,
|
Download,
|
||||||
Upload,
|
Upload,
|
||||||
|
Trash2,
|
||||||
|
Save,
|
||||||
RefreshCw,
|
RefreshCw,
|
||||||
AlertTriangle,
|
AlertTriangle,
|
||||||
CheckCircle,
|
CheckCircle,
|
||||||
XCircle,
|
Eye,
|
||||||
Info,
|
EyeOff,
|
||||||
|
Copy,
|
||||||
|
ExternalLink,
|
||||||
|
HardDrive,
|
||||||
|
Activity,
|
||||||
Lock,
|
Lock,
|
||||||
Unlock,
|
|
||||||
UserCheck,
|
|
||||||
Users,
|
|
||||||
Smartphone,
|
Smartphone,
|
||||||
Plus,
|
Plus,
|
||||||
X,
|
X,
|
||||||
} from "@/lib/icons"
|
} from "lucide-react"
|
||||||
|
|
||||||
export default function SettingsPage() {
|
export default function SettingsPage() {
|
||||||
const [activeTab, setActiveTab] = useState("profile")
|
const [activeTab, setActiveTab] = useState("profile")
|
||||||
|
|||||||
105
lib/icons.ts
105
lib/icons.ts
@ -1,105 +0,0 @@
|
|||||||
// Centralized icon exports from lucide-react
|
|
||||||
// This file helps optimize imports and provides a single source of truth for icons
|
|
||||||
|
|
||||||
// Layout & Navigation Icons
|
|
||||||
export {
|
|
||||||
Shield,
|
|
||||||
ArrowLeft,
|
|
||||||
ArrowRight,
|
|
||||||
Home,
|
|
||||||
Menu,
|
|
||||||
X,
|
|
||||||
ChevronRight,
|
|
||||||
ChevronDown,
|
|
||||||
ChevronUp,
|
|
||||||
MoreHorizontal,
|
|
||||||
LayoutDashboard
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// User & Authentication Icons
|
|
||||||
export {
|
|
||||||
Users,
|
|
||||||
User,
|
|
||||||
UserCheck,
|
|
||||||
UserPlus,
|
|
||||||
Key,
|
|
||||||
Lock,
|
|
||||||
Unlock,
|
|
||||||
LogOut
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Document & File Icons
|
|
||||||
export {
|
|
||||||
FileText,
|
|
||||||
File,
|
|
||||||
Files,
|
|
||||||
Folder,
|
|
||||||
FolderOpen,
|
|
||||||
FolderPlus,
|
|
||||||
Download,
|
|
||||||
Upload,
|
|
||||||
Share2,
|
|
||||||
Edit,
|
|
||||||
Copy,
|
|
||||||
Archive,
|
|
||||||
FileCheck
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Status & Feedback Icons
|
|
||||||
export {
|
|
||||||
CheckCircle,
|
|
||||||
XCircle,
|
|
||||||
AlertCircle,
|
|
||||||
AlertTriangle,
|
|
||||||
Info,
|
|
||||||
Clock,
|
|
||||||
Activity,
|
|
||||||
TrendingUp,
|
|
||||||
Zap,
|
|
||||||
ShieldCheck
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Action Icons
|
|
||||||
export {
|
|
||||||
Plus,
|
|
||||||
Search,
|
|
||||||
Settings,
|
|
||||||
Trash2,
|
|
||||||
Eye,
|
|
||||||
EyeOff,
|
|
||||||
RefreshCw,
|
|
||||||
Save,
|
|
||||||
Send,
|
|
||||||
Filter,
|
|
||||||
SortAsc,
|
|
||||||
SortDesc
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Technology & Development Icons
|
|
||||||
export {
|
|
||||||
Code,
|
|
||||||
Database,
|
|
||||||
HardDrive,
|
|
||||||
Globe,
|
|
||||||
Monitor,
|
|
||||||
Smartphone,
|
|
||||||
TestTube,
|
|
||||||
Calendar
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Formation & Learning Icons
|
|
||||||
export {
|
|
||||||
BookOpen,
|
|
||||||
Award,
|
|
||||||
GraduationCap
|
|
||||||
} from "lucide-react"
|
|
||||||
|
|
||||||
// Communication Icons
|
|
||||||
export {
|
|
||||||
Mail,
|
|
||||||
MessageCircle,
|
|
||||||
Phone,
|
|
||||||
Video,
|
|
||||||
Bell,
|
|
||||||
MapPin
|
|
||||||
} from "lucide-react"
|
|
||||||
10
package.json
10
package.json
@ -41,14 +41,24 @@
|
|||||||
"bip39": "^3.1.0",
|
"bip39": "^3.1.0",
|
||||||
"class-variance-authority": "^0.7.1",
|
"class-variance-authority": "^0.7.1",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
|
"cmdk": "1.0.4",
|
||||||
|
"date-fns": "4.1.0",
|
||||||
|
"embla-carousel-react": "8.5.1",
|
||||||
"geist": "^1.3.1",
|
"geist": "^1.3.1",
|
||||||
|
"input-otp": "1.4.1",
|
||||||
"lucide-react": "^0.454.0",
|
"lucide-react": "^0.454.0",
|
||||||
"next": "15.2.4",
|
"next": "15.2.4",
|
||||||
"next-themes": "latest",
|
"next-themes": "latest",
|
||||||
"nodemailer": "latest",
|
"nodemailer": "latest",
|
||||||
|
"qrcode": "^1.5.4",
|
||||||
"react": "^19",
|
"react": "^19",
|
||||||
|
"react-day-picker": "9.8.0",
|
||||||
"react-dom": "^19",
|
"react-dom": "^19",
|
||||||
"react-hook-form": "^7.60.0",
|
"react-hook-form": "^7.60.0",
|
||||||
|
"react-qr-code": "^2.0.18",
|
||||||
|
"react-resizable-panels": "^2.1.7",
|
||||||
|
"recharts": "2.15.4",
|
||||||
|
"sonner": "^1.7.4",
|
||||||
"tailwind-merge": "^2.5.5",
|
"tailwind-merge": "^2.5.5",
|
||||||
"tailwindcss-animate": "^1.0.7",
|
"tailwindcss-animate": "^1.0.7",
|
||||||
"uuid": "latest",
|
"uuid": "latest",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user