import React, { useState } from 'react'; import { Card } from '../ui/card'; import { Button } from '../ui/button'; import { ProgressBar } from '../ui/progress'; import { HardDrive, Trash2, Clock, MapPin, AlertCircle } from 'lucide-react'; import { useToast } from '../../context/ToastContext'; export const CloudSettingsView: React.FC = () => { const { addToast } = useToast(); const [retention, setRetention] = useState('30'); const [region, setRegion] = useState('us-east-1'); return (
{/* Quota */}

Storage Quota

65.4 GB
used of 100 GB (Pro Plan)
Audio
45 GB
Projects
15 GB
Other
5.4 GB
{/* Preferences */}

Preferences

Deleted files are permanently removed after this period.

Changing regions requires data migration which may take up to 24 hours.
); };