Skip to content

Commit 6ccbb3e

Browse files
Fix: Font inconsistencies and menu issues
Correct font usage and address menu display problems.
1 parent fff04f5 commit 6ccbb3e

File tree

5 files changed

+16
-27
lines changed

5 files changed

+16
-27
lines changed

src/components/EcosystemSection.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const EcosystemCard = ({
7979
<div className="mb-4 p-3 bg-alien-space-dark rounded-full w-fit">
8080
{ecosystem.icon}
8181
</div>
82-
<h3 className="text-xl font-semibold mb-2 text-alien-gold">{ecosystem.title}</h3>
82+
<h3 className="text-xl font-semibold mb-2 text-alien-gold font-atomic-force">{ecosystem.title}</h3>
8383
<p className="text-gray-300 flex-grow">{ecosystem.description}</p>
8484
<div className="mt-4">
8585
<a href={`#${ecosystem.id}`} className="text-alien-green hover:text-alien-green-light text-sm flex items-center">
@@ -103,16 +103,14 @@ const EcosystemSection = () => {
103103
once: true,
104104
margin: "-100px"
105105
}} className="text-center mb-16">
106-
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow">DAO Ecosystem</h2>
106+
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow font-atomic-force">DAO Ecosystem</h2>
107107
<p className="text-xl text-gray-300 max-w-3xl mx-auto">ΔlieπFlΦw $pac€ bridges diverse decentralized domains into a coherent, interoperable ecosystem.</p>
108108
</motion.div>
109109

110110
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-6">
111111
{ecosystems.map((ecosystem, index) => <EcosystemCard key={ecosystem.id} ecosystem={ecosystem} index={index} />)}
112112
</div>
113113
</div>
114-
115-
{/* Remove background decoration */}
116114
</section>;
117115
};
118116

src/components/ExploreSpacesSection.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ExploreSpacesSection = () => {
3636
viewport={{ once: true }}
3737
className="text-center mb-16"
3838
>
39-
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow font-atomic">Explore Spaces</h2>
39+
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow font-atomic-force">Explore Spaces</h2>
4040
<p className="text-xl text-gray-300 max-w-3xl mx-auto">
4141
Discover specialized environments designed to enhance your journey through the cosmos
4242
</p>
@@ -55,7 +55,7 @@ const ExploreSpacesSection = () => {
5555
<div className="mb-6 p-4 bg-alien-space-dark rounded-full">
5656
{space.icon}
5757
</div>
58-
<h3 className="text-2xl font-bold mb-4 text-alien-gold font-atomic">{space.title}</h3>
58+
<h3 className="text-2xl font-bold mb-4 text-alien-gold font-atomic-force">{space.title}</h3>
5959
<p className="text-gray-300 mb-8 flex-grow">{space.description}</p>
6060
<Link to={space.link}>
6161
<Button className="bg-alien-green hover:bg-alien-green-light text-alien-space-dark">
@@ -66,8 +66,6 @@ const ExploreSpacesSection = () => {
6666
))}
6767
</div>
6868
</div>
69-
70-
{/* Remove background decorations that were causing yellow glow */}
7169
</section>
7270
);
7371
};

src/components/FeaturesSection.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
12
import React from 'react';
23
import { motion } from 'framer-motion';
34
import { Globe, Shield, Users, Box, BarChart4 } from 'lucide-react';
5+
46
const features = [{
57
icon: <Box className="h-10 w-10" />,
68
title: "Cross-Chain Integration",
@@ -22,6 +24,7 @@ const features = [{
2224
title: "Transparent Analytics",
2325
description: "Access real-time data visualization and analytics on all ecosystem activity and performance."
2426
}];
27+
2528
const FeaturesSection = () => {
2629
return <section className="py-20 relative overflow-hidden">
2730
<div className="container mx-auto px-4 py-0 my-0">
@@ -34,7 +37,7 @@ const FeaturesSection = () => {
3437
}} viewport={{
3538
once: true
3639
}} className="text-center mb-16">
37-
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow">Advanced Features</h2>
40+
<h2 className="text-4xl font-bold mb-4 text-alien-gold text-glow font-atomic-force">Advanced Features</h2>
3841
<p className="text-xl text-gray-300 max-w-3xl mx-auto">ΔlieπFlΦw $pac€ offers cutting-edge technologies to support our interstellar ecosystem</p>
3942
</motion.div>
4043

@@ -58,7 +61,7 @@ const FeaturesSection = () => {
5861
</div>
5962
</div>
6063

61-
<h3 className="text-xl font-semibold mb-3 text-alien-gold">{feature.title}</h3>
64+
<h3 className="text-xl font-semibold mb-3 text-alien-gold font-atomic-force">{feature.title}</h3>
6265
<p className="text-gray-300">{feature.description}</p>
6366

6467
{/* Hover effect */}
@@ -71,4 +74,5 @@ const FeaturesSection = () => {
7174
<div className="absolute bottom-0 left-0 w-full h-20 bg-gradient-to-t from-alien-space to-transparent"></div>
7275
</section>;
7376
};
74-
export default FeaturesSection;
77+
78+
export default FeaturesSection;

src/components/FinancialFreedomSection.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
12
import React from 'react';
23
import { motion } from 'framer-motion';
34
import { Bitcoin, Landmark, Coins } from 'lucide-react';
4-
import AnimatedText from './AnimatedText'; // Importamos AnimatedText
5+
import AnimatedText from './AnimatedText';
56

67
const FinancialFreedomSection = () => {
78
return (
@@ -22,7 +23,7 @@ const FinancialFreedomSection = () => {
2223
}}
2324
className="text-center mb-12"
2425
>
25-
<h2 className="text-4xl font-bold mb-6 text-alien-gold text-glow font-[Atomic Age]">
26+
<h2 className="text-4xl font-bold mb-6 text-alien-gold text-glow font-atomic-force">
2627
Financial Freedom
2728
</h2>
2829

@@ -60,8 +61,8 @@ const FinancialFreedomSection = () => {
6061
}}
6162
className="card-border p-8 max-w-3xl mx-auto text-center"
6263
>
63-
<h3 className="text-2xl font-bold mb-3 text-alien-gold font-[Atomic Age]">
64-
A₿tc (Aurum nostrum non est aurum vulgi)
64+
<h3 className="text-2xl font-bold mb-3 text-alien-gold font-atomic-force">
65+
A₿tc (Aurum nostrum non est aurum vulgi)
6566
</h3>
6667
<p className="text-gray-300 mb-4 font-[Exo]">
6768
Aurum ₿itoin cryptoken serves as collateral and derivative of Bitcoin and gold, providing scalability, stability and growth potential (Φπ)...
@@ -71,8 +72,6 @@ const FinancialFreedomSection = () => {
7172
</div>
7273
</motion.div>
7374
</div>
74-
75-
{/* Eliminamos el elemento verde inclinado del fondo */}
7675
</section>
7776
);
7877
};

src/global.css

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,6 @@ h1, h2, h3, h4, h5, h6, .font-atomic {
7777
white-space: nowrap !important; /* Keep text in one line */
7878
}
7979

80-
/* Alien logo text specific styling */
81-
.alien-logo-text {
82-
font-family: 'Nasalization', sans-serif !important;
83-
letter-spacing: 0.5px !important;
84-
font-weight: 400 !important;
85-
font-style: normal !important;
86-
font-display: block !important;
87-
white-space: nowrap !important; /* Keep text in one line */
88-
}
89-
9080
/* Alignment correction for sections */
9181
.section-center {
9282
display: flex;

0 commit comments

Comments
 (0)