import { Link } from 'react-router-dom'; import { useAppSettings } from '../../context/AppSettingsContext'; import Card from '../../components/ui/Card'; import Select from '../../components/ui/Select'; import { ArrowLeft, Eye } from 'lucide-react'; const scrollThresholdOptions = [ { value: '0.1', label: '10%' }, { value: '0.2', label: '20%' }, { value: '0.3', label: '30%' }, { value: '0.4', label: '40%' }, { value: '0.5', label: '50%' }, { value: '0.6', label: '60%' }, { value: '0.7', label: '70% (Standard)' }, { value: '0.8', label: '80%' }, { value: '0.9', label: '90%' }, { value: '999', label: 'Deaktiviert' }, ]; export default function ViewSettings() { const { settings, updateSettings } = useAppSettings(); return (
Nach-oben-Button
Ab welcher Scroll-Position der Button unten rechts erscheinen soll