"use client"; import React from "react"; import Image from "next/image"; import QuoteDecor from "./QuoteDecor"; const QuoteBlock = ({ className = "" }) => { return (
{/* DECORATIONS (behind content) */}
Quote Avatar

The rules of decision-making must be open and available to everyone, and this can happen only if they are formalized.

Jo Freeman

The Tyranny of Structurelessness

); }; export default QuoteBlock;