|
1 |
| -import { ResourceCard } from "./component/resource-card" |
2 |
| -import { Globe, Laptop } from "lucide-react" |
3 |
| -import Navbar1 from "@/components/navbar" |
4 |
| -import { Ripple } from "./component/ripple" |
5 |
| -import SupportSection from "./component/support-section" |
6 |
| -import Footer from "@/components/footer" |
| 1 | +import { ResourceCard } from "./component/resource-card"; |
| 2 | +import { Globe, Laptop } from "lucide-react"; |
| 3 | +import Navbar1 from "@/components/navbar"; |
| 4 | +import { Ripple } from "./component/ripple"; |
| 5 | +import SupportSection from "./component/support-section"; |
| 6 | +import Footer from "@/components/footer"; |
7 | 7 |
|
8 | 8 | export default function ResourcesPage() {
|
9 | 9 | return (
|
10 | 10 | <div className="">
|
11 | 11 | <Navbar1 />
|
12 |
| - <div className="min-h-screen bg-black text-white relative"> |
| 12 | + <div className="min-h-screen bg-background relative"> |
13 | 13 | {/* Hero Section */}
|
14 | 14 | <div className="relative pt-32 pb-16 px-4 text-center">
|
15 | 15 | <Ripple className="absolute inset-0 z-0" />
|
16 | 16 |
|
17 |
| - <h1 className="text-5xl md:text-6xl font-extrabold mb-6 bg-gradient-to-r from-white to-white/80 bg-clip-text text-transparent shadow-text"> |
| 17 | + <h1 className="text-5xl md:text-6xl font-extrabold mb-6 dark:bg-gradient-to-r from-white to-white/80 dark:bg-clip-text dark:text-transparent text-black shadow-text"> |
18 | 18 | Discover Resources
|
19 | 19 | </h1>
|
20 |
| - <p className="text-xl md:text-2xl text-white/80 max-w-3xl mx-auto mb-12"> |
21 |
| - Explore our curated collection of learning materials to enhance your skills in programming, web development, |
22 |
| - and DevOps. |
| 20 | + <p className="text-xl md:text-2xl dark:text-white/80 text-black max-w-3xl mx-auto mb-12"> |
| 21 | + Explore our curated collection of learning materials to enhance your |
| 22 | + skills in programming, web development, and DevOps. |
23 | 23 | </p>
|
24 | 24 | </div>
|
25 | 25 |
|
26 | 26 | {/* Programming Languages Section */}
|
27 | 27 | <div className="relative px-4 pb-24 max-w-7xl mx-auto">
|
28 | 28 | <div className="flex items-center gap-3 mb-8">
|
29 |
| - <Laptop className="text-white/80" size={32} /> |
| 29 | + <Laptop className="dark:text-white/80 text-black" size={32} /> |
30 | 30 | <h2 className="text-3xl font-semibold">Programming Languages</h2>
|
31 | 31 | </div>
|
32 | 32 |
|
@@ -54,7 +54,7 @@ export default function ResourcesPage() {
|
54 | 54 |
|
55 | 55 | <div className="relative px-4 pb-24 max-w-7xl mx-auto">
|
56 | 56 | <div className="flex items-center gap-3 mb-8">
|
57 |
| - <Globe className="text-white/80" size={32} /> |
| 57 | + <Globe className="dark:text-white/80 text-black" size={32} /> |
58 | 58 | <h2 className="text-3xl font-semibold">Foundations</h2>
|
59 | 59 | </div>
|
60 | 60 |
|
@@ -83,6 +83,5 @@ export default function ResourcesPage() {
|
83 | 83 | <SupportSection />
|
84 | 84 | <Footer />
|
85 | 85 | </div>
|
86 |
| - ) |
| 86 | + ); |
87 | 87 | }
|
88 |
| - |
0 commit comments