diff --git a/frontend/src/components/FileExplorer.tsx b/frontend/src/components/FileExplorer.tsx index 9acfcd3..c19ec5a 100644 --- a/frontend/src/components/FileExplorer.tsx +++ b/frontend/src/components/FileExplorer.tsx @@ -8,7 +8,7 @@ import { MoreVertical, Star, Download, Pencil, Copy, Move, FolderPlus, ArrowUp, X, Check, RefreshCw, Info, Link as LinkIcon, Image as ImageIcon, Film as FilmIcon, Home, Sun, Moon, Music as MusicIcon, Code as CodeIcon, Archive as ArchiveIcon, CornerDownRight, - CheckCircle, AlertCircle, Menu, FileText, Presentation, FileSpreadsheet + CheckCircle, AlertCircle, Menu, FileText, Projector, FileSpreadsheet } from 'lucide-react'; import api from '@/lib/api'; import { useIsMobile } from '@/hooks/useIsMobile'; @@ -1180,7 +1180,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { if (ext === 'pptx' || ext === 'ppt') { return (
- +
); } @@ -1454,7 +1454,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { }} >
- +
Slides @@ -1579,7 +1579,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) { color: !editingFile ? 'var(--color-accent)' : 'var(--color-text-secondary)', }} > - + Recent Presentations {renderPinnedSidebarSection('.pptx')} diff --git a/frontend/src/components/OfficeHome.tsx b/frontend/src/components/OfficeHome.tsx index 1066313..7f01f33 100644 --- a/frontend/src/components/OfficeHome.tsx +++ b/frontend/src/components/OfficeHome.tsx @@ -1,5 +1,5 @@ import React, { useState, useEffect, useRef } from 'react'; -import { Plus, Pencil, Trash2, Pin, FileText, Presentation, FileSpreadsheet } from 'lucide-react'; +import { Plus, Pencil, Trash2, Pin, FileText, Projector, FileSpreadsheet } from 'lucide-react'; import api from '@/lib/api'; interface FileItem { @@ -33,7 +33,7 @@ function WordIcon({ className }: { className?: string }) { function PptIcon({ className }: { className?: string }) { return (
- +
); }