questions fix

This commit is contained in:
nmemmert
2026-06-03 11:18:22 -04:00
parent 3e49ccce62
commit b7aa32e4b7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -872,7 +872,7 @@ export function StudyLandingPage({ content }: Props) {
</p> </p>
<div style={{ display: 'flex', gap: '0.75rem', justifyContent: 'center', flexWrap: 'wrap' }}> <div style={{ display: 'flex', gap: '0.75rem', justifyContent: 'center', flexWrap: 'wrap' }}>
<a href="/questions" className="btn-primary">Browse Q&amp;A Archive </a> <a href="/questions" className="btn-primary">Browse Q&amp;A Archive </a>
<a href="/questions#ask" className="btn-secondary">Submit a Question</a> <a href="/contact" className="btn-secondary">Submit a Question</a>
</div> </div>
</div> </div>
</section> </section>
+2 -2
View File
@@ -677,7 +677,7 @@ export default function QASection() {
<p className="qa-no-results">Loading questions...</p> <p className="qa-no-results">Loading questions...</p>
) : questions.length === 0 ? ( ) : questions.length === 0 ? (
<div className="qa-no-results"> <div className="qa-no-results">
<p>No questions have been answered yet. <a href="#contact">Submit yours below!</a></p> <p>No questions have been answered yet. <a href="/contact">Submit yours below!</a></p>
</div> </div>
) : ( ) : (
<> <>
@@ -781,7 +781,7 @@ export default function QASection() {
}}>{mostHelpfulQuestion.question}</button>. }}>{mostHelpfulQuestion.question}</button>.
</p> </p>
)} )}
<p><a href="#contact">Submit your question</a> and Nate may add it here.</p> <p><a href="/contact">Submit your question</a> and Nate may add it here.</p>
</div> </div>
) : ( ) : (
<> <>