Skip to content

Commit 0eb3a6e

Browse files
committed
fix: connect dead hero buttons to actual targets
- Forschung entdecken: scrolls to research modes section - Labor Protokoll: replaced with GitHub link - Added id="research" to modes section Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2231e66 commit 0eb3a6e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/App.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -270,18 +270,18 @@ const App = () => {
270270
</p>
271271

272272
<div className="flex flex-wrap gap-4 sm:gap-8">
273-
<button className="px-6 py-4 sm:px-12 sm:py-6 bg-white text-slate-950 font-black rounded-2xl hover:bg-cyan-400 transition-all uppercase tracking-widest text-xs flex items-center gap-3">
273+
<a href="#research" className="px-6 py-4 sm:px-12 sm:py-6 bg-white text-slate-950 font-black rounded-2xl hover:bg-cyan-400 transition-all uppercase tracking-widest text-xs flex items-center gap-3">
274274
{heroData.cta_text} <ChevronRight size={18} />
275-
</button>
276-
<button className="px-6 py-4 sm:px-12 sm:py-6 bg-white/5 backdrop-blur-md border border-white/10 text-white font-black rounded-2xl hover:border-cyan-500 transition-all uppercase tracking-widest text-xs">
277-
Labor Protokoll
278-
</button>
275+
</a>
276+
<a href="https://github.com/synapticore-io" target="_blank" rel="noopener noreferrer" className="px-6 py-4 sm:px-12 sm:py-6 bg-white/5 backdrop-blur-md border border-white/10 text-white font-black rounded-2xl hover:border-cyan-500 transition-all uppercase tracking-widest text-xs no-underline">
277+
GitHub
278+
</a>
279279
</div>
280280
</div>
281281
</div>
282282
</section>
283283

284-
<section className="py-16 md:py-32 relative">
284+
<section id="research" className="py-16 md:py-32 relative">
285285
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
286286
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
287287
{modes.map((mode) => (

0 commit comments

Comments
 (0)