Skip to content

Commit aeee852

Browse files
Fix: Remove non-existent lucide-react import
The commit removes the import of `Quantum` from `lucide-react` in `src/pages/CoNetWorKing.tsx` as it does not exist, resolving a TypeScript error.
1 parent 35053dc commit aeee852

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/pages/CoNetWorKing.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
12
import React from 'react';
23
import StarBackground from '@/components/StarBackground';
3-
import { Network, TrendingUp, Shield, Coins, Sprout, Pickaxe, Layers, Dna, FlaskConical, Gamepad2, Database, Quantum, Leaf, Building, Users, Landmark } from 'lucide-react';
4+
import { Network, TrendingUp, Shield, Coins, Sprout, Pickaxe, Layers, Dna, FlaskConical, Gamepad2, Database, Zap, Leaf, Building, Users, Landmark } from 'lucide-react';
45
import { Button } from '@/components/ui/button';
56
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
67

@@ -92,7 +93,7 @@ const CoNetWorKing: React.FC = () => {
9293
{
9394
title: "QFS (Quantum Financial System)",
9495
description: "Experience next-generation quantum-secured financial transactions. Benefit from quantum-resistant cryptography and ultra-fast processing.",
95-
icon: <Quantum className="h-8 w-8 text-white" />,
96+
icon: <Zap className="h-8 w-8 text-white" />,
9697
color: "bg-gradient-to-br from-emerald-500 to-teal-400"
9798
},
9899
{

0 commit comments

Comments
 (0)