17 lines
717 B
TypeScript
17 lines
717 B
TypeScript
import './Tips.css';
|
|
|
|
export default function Tips() {
|
|
return (
|
|
<div className="tips-panel">
|
|
<h3 className="tips-title">💡 Tips</h3>
|
|
<ul className="tips-list">
|
|
<li>Start with simple images (circles, logos) for best results</li>
|
|
<li>Increase <strong>Speed slider to 50-100</strong> for max performance!</li>
|
|
<li>Increase <strong>Children per Gen</strong> to 20-30 for faster convergence</li>
|
|
<li>Visible shapes typically appear after <strong>5k-10k</strong> generations</li>
|
|
<li>Lower mutation strength once you see rough shapes forming</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|