import React from 'react'; import './PromptDisplay.css'; // Assuming a CSS file for styling const CosmicEvolutionPrompt = () => { const promptText = ` A hyper-realistic, high-resolution digital painting of cosmic evolution. The central subject is a nebula-like structure, but instead of gas and dust, it is composed of swirling, intricate strands of dark matter and energy. Within this celestial cradle, faint, nascent galaxies and star systems are slowly beginning to coalesce, representing the early stages of universal evolution. The color palette is dominated by deep blacks, charcoal grays, and subtle hints of deep violet and indigo, with isolated points of brilliant, cold light from the forming stars. The style is detailed and complex, with a sense of immense scale and cosmic stillness. `; return ( <div className="prompt-container"> <h1 className="prompt-title">Cosmic Evolution</h1> <pre className="prompt-text"> {promptText} </pre> </div> ); }; export default CosmicEvolutionPrompt