Pavel — Florensky Quotes

export default FlorenskyQuotes;

h1 text-align: center; color: #2c3e2f; font-size: 1.8rem; pavel florensky quotes

const categories = ['All', ...new Set(florenskyQuotes.map(q => q.category))]; Instead of linear perspective (where the viewer is

"We must learn to see the invisible even in the midst of visible horror. The gulag is a school of theology, though its pedagogy is harsh." q.category === category)

<div style=styles.filterBar> <label>Category: </label> <select value=category onChange=(e) => setCategory(e.target.value) style=styles.select> categories.map(cat => ( <option key=cat value=cat>cat</option> )) </select> <button onClick=getRandomQuote style=styles.randomButton>✨ Random Quote</button> </div>

Florensky’s most accessible work is Iconostasis . Here, he revolutionized art theory by explaining why Orthodox icons look "wrong" to Renaissance eyes. Instead of linear perspective (where the viewer is the center), icons use (where God is the center).

const filteredQuotes = category === 'All' ? florenskyQuotes : florenskyQuotes.filter(q => q.category === category);