Skip to content

Commit 9465b2e

Browse files
Fix: Ensure Nasalization font for titles
Correct font loading and application for titles and headings across the application.
1 parent 6ccbb3e commit 9465b2e

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/components/FinancialFreedomSection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const FinancialFreedomSection = () => {
3333
<Coins className="text-alien-gold h-16 w-16 ml-4" />
3434
</div>
3535

36-
{/* Usamos AnimatedText aquí */}
3736
<AnimatedText className="text-xl max-w-5xl mx-auto text-gray-300 font-[Exo] leading-relaxed">
3837
Any Individual or Professional can Understand the Advantage of Digital Money: Impartial Money that does not discriminate, Decentralized Currencies, Scalable and Stable with the Volatility. Safe Reserves of Values, allowing individuals to secure their wealth while enjoying the benefits of a decentralized economy.
3938
</AnimatedText>

src/pages/Academy.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const CourseCard = ({ title, description, icon, level, duration, color }: {
2626
<span className="px-2 py-1 text-xs bg-alien-space-light rounded-full text-alien-green">{duration}</span>
2727
</div>
2828
</div>
29-
<h3 className="text-xl font-semibold mb-2 text-alien-gold">{title}</h3>
29+
<h3 className="text-xl font-semibold mb-2 text-alien-gold font-atomic-force">{title}</h3>
3030
<p className="text-gray-300 text-sm mb-4">{description}</p>
3131
<Button variant="outline" className="w-full border-alien-gold/30 text-alien-gold hover:bg-alien-gold/10">
3232
Explore Course
@@ -95,7 +95,7 @@ const Academy: React.FC = () => {
9595
<div className="max-w-6xl mx-auto">
9696
<div className="text-center mb-16">
9797
<GraduationCap className="h-16 w-16 text-alien-gold mx-auto mb-4" />
98-
<h1 className="text-4xl md:text-5xl font-bold text-alien-gold mb-6 font-[Atomic Age, Star Wars]">Academy</h1>
98+
<h1 className="text-4xl md:text-5xl font-bold text-alien-gold mb-6 font-atomic-force">Academy</h1>
9999
<p className="text-xl text-gray-300 max-w-3xl mx-auto font-[Exo]">
100100
Expand your cosmic knowledge and master the principles of decentralized technologies through our immersive learning experiences.
101101
</p>
@@ -105,7 +105,7 @@ const Academy: React.FC = () => {
105105
<div className="mb-16 bg-alien-space-dark/60 rounded-xl overflow-hidden backdrop-blur-md border border-alien-gold/30">
106106
<div className="grid grid-cols-1 md:grid-cols-2">
107107
<div className="p-8 md:p-12">
108-
<h2 className="text-3xl font-bold text-alien-gold mb-4 font-[Atomic Age]">Certification Degree Master's Program</h2>
108+
<h2 className="text-3xl font-bold text-alien-gold mb-4 font-atomic-force">Certification Degree Master's Program</h2>
109109
<p className="text-gray-300 mb-6 font-[Exo]">
110110
Become a certified ΔlieπFlΦw $pac€ Explorer & Navigator and unlock exclusive opportunities in our expanding cosmic ecosystem.
111111
</p>
@@ -135,7 +135,7 @@ const Academy: React.FC = () => {
135135

136136
{/* Course Grid */}
137137
<div className="mb-16">
138-
<h2 className="text-2xl font-bold text-alien-gold mb-8 font-[Atomic Age]">Featured Courses</h2>
138+
<h2 className="text-2xl font-bold text-alien-gold mb-8 font-atomic-force">Featured Courses</h2>
139139
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
140140
{courses.map((course, index) => (
141141
<CourseCard key={index} {...course} />
@@ -145,7 +145,7 @@ const Academy: React.FC = () => {
145145

146146
{/* CTA Section */}
147147
<div className="text-center bg-alien-space-dark/50 rounded-xl p-8 backdrop-blur-md border border-alien-gold/20">
148-
<h2 className="text-2xl font-bold text-alien-gold mb-4 font-[Atomic Age]">Ready to Expand Your Cosmic Knowledge?</h2>
148+
<h2 className="text-2xl font-bold text-alien-gold mb-4 font-atomic-force">Ready to Expand Your Cosmic Knowledge?</h2>
149149
<p className="text-gray-300 mb-6 max-w-2xl mx-auto font-[Exo]">
150150
Join thousands of space navigators on their journey to master the principles of the decentralized multiverse.
151151
</p>

src/pages/NotFound.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const NotFound: React.FC = () => {
1414
<Header />
1515
<main className="container mx-auto px-4 pt-24 pb-16 flex items-center justify-center min-h-[calc(100vh-16rem)]">
1616
<div className="text-center max-w-xl">
17-
<h1 className="text-7xl md:text-9xl font-bold text-alien-gold mb-4 font-[Atomic Age, Star Wars]">404</h1>
17+
<h1 className="text-7xl md:text-9xl font-bold text-alien-gold mb-4 font-atomic-force">404</h1>
1818
<p className="text-xl md:text-2xl text-gray-300 mb-8 font-[Exo]">Parece que te has perdido en el espacio. Esta dimensión no existe en nuestro multiverso.</p>
1919
<Link to="/">
2020
<Button className="bg-alien-green hover:bg-alien-green-light text-alien-space-dark px-8 font-[Exo]">

0 commit comments

Comments
 (0)