🐛 Fix syntax error in Foundation.tsx
- Fix malformed div tag with inline comment - Remove orphaned button elements - Resolves 500 error on Foundation page
This commit is contained in:
parent
7aedd591b7
commit
f673d05846
1 changed files with 2 additions and 11 deletions
|
|
@ -94,7 +94,8 @@ export default function Foundation() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="container mx-auto px-4 max-w-7xl space-y-20 py-16 lg:py-24">{/* Hero Section */}
|
<div className="container mx-auto px-4 max-w-7xl space-y-20 py-16 lg:py-24">
|
||||||
|
{/* Hero Section */}
|
||||||
<div className="text-center space-y-8 animate-slide-down">
|
<div className="text-center space-y-8 animate-slide-down">
|
||||||
<div className="flex justify-center mb-6">
|
<div className="flex justify-center mb-6">
|
||||||
<img
|
<img
|
||||||
|
|
@ -138,16 +139,6 @@ export default function Foundation() {
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
|
||||||
onClick={() => navigate("/mentorship")}
|
|
||||||
variant="outline"
|
|
||||||
className="border-red-500/30 text-red-300 hover:bg-red-500/10 h-12 text-base"
|
|
||||||
>
|
|
||||||
<GraduationCap className="h-5 w-5 mr-2" />
|
|
||||||
Explore Programs
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Flagship: GameForge Section */}
|
{/* Flagship: GameForge Section */}
|
||||||
<Card className="bg-gradient-to-br from-green-950/40 via-emerald-950/30 to-green-950/40 border-green-500/40 overflow-hidden">
|
<Card className="bg-gradient-to-br from-green-950/40 via-emerald-950/30 to-green-950/40 border-green-500/40 overflow-hidden">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue