Skip to content

Commit 6c61078

Browse files
Fix: Improve club and CoNetWorKing page design
1 parent 3832e34 commit 6c61078

File tree

2 files changed

+20
-24
lines changed

2 files changed

+20
-24
lines changed

src/pages/Clubs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ const Clubs: React.FC = () => {
402402
<h2 className="text-3xl font-bold text-alien-gold mb-8 font-nasalization text-center text-glow">
403403
Featured Clubs
404404
</h2>
405-
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6 max-w-7xl mx-auto">
405+
<div className="grid grid-cols-1 gap-6 max-w-7xl mx-auto">
406406
{[...featuredClubs].sort((a, b) => a.name.localeCompare(b.name)).map((club, index) => (
407407
<FeaturedClubCard key={index} club={club} />
408408
))}

src/pages/CoNetWorKing.tsx

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@ const CoNetWorKing: React.FC = () => {
5151
icon: <TrendingUp className="h-8 w-8 text-white" />,
5252
color: "bg-gradient-to-br from-blue-500 to-cyan-400"
5353
},
54-
{
55-
title: "Mining",
56-
description: "Participate in network security and earn rewards through proof-of-work and proof-of-stake mining operations.",
57-
icon: <Pickaxe className="h-8 w-8 text-white" />,
58-
color: "bg-gradient-to-br from-yellow-500 to-orange-400"
59-
},
6054
{
6155
title: "BioFi",
6256
description: "Revolutionize biotechnology funding through decentralized finance. Support and invest in groundbreaking biological research and medical innovations.",
@@ -99,6 +93,12 @@ const CoNetWorKing: React.FC = () => {
9993
icon: <Database className="h-8 w-8 text-white" />,
10094
color: "bg-gradient-to-br from-slate-500 to-gray-400"
10195
},
96+
{
97+
title: "Mining",
98+
description: "Participate in network security and earn rewards through proof-of-work and proof-of-stake mining operations.",
99+
icon: <Pickaxe className="h-8 w-8 text-white" />,
100+
color: "bg-gradient-to-br from-yellow-500 to-orange-400"
101+
},
102102
{
103103
title: "QFS (Quantum Financial System)",
104104
description: "Experience next-generation quantum-secured financial transactions. Benefit from quantum-resistant cryptography and ultra-fast processing.",
@@ -261,7 +261,7 @@ const CoNetWorKing: React.FC = () => {
261261
<main className="container mx-auto px-4 pt-32 pb-16 relative z-20">
262262
<div className="max-w-7xl mx-auto">
263263
{/* Hero Section */}
264-
<div className="text-center mb-20 bg-alien-space-dark/80 backdrop-blur-md rounded-2xl p-12 border border-alien-gold/30">
264+
<div className="text-center mb-20 bg-alien-space-dark/90 backdrop-blur-md rounded-2xl p-12 border border-alien-gold/30 shadow-[0_0_50px_rgba(0,0,0,0.3)]">
265265
<div className="inline-flex items-center justify-center w-24 h-24 bg-alien-gold/20 rounded-full mb-6 border-2 border-alien-gold/40 backdrop-blur-md">
266266
<img
267267
src="/lovable-uploads/CoNetWorKingLogo.png"
@@ -279,10 +279,6 @@ const CoNetWorKing: React.FC = () => {
279279

280280
{/* Real-time Network Stats with Bitcoin Widget */}
281281
<div className="mb-20">
282-
<h2 className="text-3xl font-bold text-alien-gold mb-12 text-center font-[Atomic Age]">
283-
Live Network & Market Data
284-
</h2>
285-
286282
{/* Bitcoin Price Widget */}
287283
<div className="mb-8 max-w-4xl mx-auto">
288284
<Card className="bg-alien-space-dark/70 backdrop-blur-md border border-alien-gold/30">
@@ -351,6 +347,18 @@ const CoNetWorKing: React.FC = () => {
351347
</div>
352348
</div>
353349

350+
{/* Services Grid */}
351+
<div className="mb-20">
352+
<h2 className="text-3xl font-bold text-alien-gold mb-12 text-center font-[Atomic Age]">
353+
DAO | DAPP | DEX
354+
</h2>
355+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
356+
{services.map((service, index) => (
357+
<ServiceCard key={index} service={service} />
358+
))}
359+
</div>
360+
</div>
361+
354362
{/* DAO Section */}
355363
<div className="mb-20">
356364
<h2 className="text-3xl font-bold text-alien-gold mb-12 text-center font-[Atomic Age]">
@@ -444,18 +452,6 @@ const CoNetWorKing: React.FC = () => {
444452
</div>
445453
</div>
446454

447-
{/* Services Grid */}
448-
<div className="mb-20">
449-
<h2 className="text-3xl font-bold text-alien-gold mb-12 text-center font-[Atomic Age]">
450-
DAO | DAPP | DEX
451-
</h2>
452-
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
453-
{services.map((service, index) => (
454-
<ServiceCard key={index} service={service} />
455-
))}
456-
</div>
457-
</div>
458-
459455
{/* Partners Section */}
460456
<div className="mb-20">
461457
<h2 className="text-3xl font-bold text-alien-gold mb-12 text-center font-[Atomic Age]">

0 commit comments

Comments
 (0)