|
| 1 | +import { SearchBar } from "./component/search-bar" |
| 2 | +import { ResourceCard } from "./component/resource-card" |
| 3 | +import { Globe, Laptop } from "lucide-react" |
| 4 | +import Navbar1 from "@/components/navbar" |
| 5 | +import { Ripple } from "./component/ripple" |
| 6 | +import SupportSection from "./component/support-section" |
| 7 | +import Footer from "@/components/footer" |
| 8 | + |
| 9 | +export default function ResourcesPage() { |
| 10 | + return ( |
| 11 | + <div className=""> |
| 12 | + <Navbar1 /> |
| 13 | + <div className="min-h-screen bg-black text-white relative"> |
| 14 | + {/* Hero Section */} |
| 15 | + <div className="relative pt-32 pb-16 px-4 text-center"> |
| 16 | + <Ripple className="absolute inset-0 z-0" /> |
| 17 | + |
| 18 | + <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"> |
| 19 | + Discover Resources |
| 20 | + </h1> |
| 21 | + <p className="text-xl md:text-2xl text-white/80 max-w-3xl mx-auto mb-12"> |
| 22 | + Explore our curated collection of learning materials to enhance your skills in programming, web development, |
| 23 | + and DevOps. |
| 24 | + </p> |
| 25 | + <SearchBar /> |
| 26 | + </div> |
| 27 | + |
| 28 | + {/* Programming Languages Section */} |
| 29 | + <div className="relative px-4 pb-24 max-w-7xl mx-auto"> |
| 30 | + <div className="flex items-center gap-3 mb-8"> |
| 31 | + <Laptop className="text-white/80" size={32} /> |
| 32 | + <h2 className="text-3xl font-semibold">Programming Languages</h2> |
| 33 | + </div> |
| 34 | + |
| 35 | + <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| 36 | + <ResourceCard |
| 37 | + title="Python" |
| 38 | + description="Known for its simplicity and wide range of applications, from web dev to data science." |
| 39 | + buttonColor="bg-emerald-500" |
| 40 | + /> |
| 41 | + <ResourceCard |
| 42 | + title="C" |
| 43 | + description="A high-performance, compiled language that provides low-level memory management." |
| 44 | + /> |
| 45 | + <ResourceCard |
| 46 | + title="C++/CPP" |
| 47 | + description="Widely used for system/application software, game development, and more." |
| 48 | + /> |
| 49 | + <ResourceCard |
| 50 | + title="Java" |
| 51 | + description="A popular language for building large-scale enterprise applications and Android apps." |
| 52 | + isComingSoon |
| 53 | + /> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + |
| 57 | + <div className="relative px-4 pb-24 max-w-7xl mx-auto"> |
| 58 | + <div className="flex items-center gap-3 mb-8"> |
| 59 | + <Globe className="text-white/80" size={32} /> |
| 60 | + <h2 className="text-3xl font-semibold">Foundations</h2> |
| 61 | + </div> |
| 62 | + |
| 63 | + <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
| 64 | + <ResourceCard |
| 65 | + title="Python" |
| 66 | + description="Known for its simplicity and wide range of applications, from web dev to data science." |
| 67 | + buttonColor="bg-emerald-500" |
| 68 | + /> |
| 69 | + <ResourceCard |
| 70 | + title="C" |
| 71 | + description="A high-performance, compiled language that provides low-level memory management." |
| 72 | + /> |
| 73 | + <ResourceCard |
| 74 | + title="C++/CPP" |
| 75 | + description="Widely used for system/application software, game development, and more." |
| 76 | + /> |
| 77 | + <ResourceCard |
| 78 | + title="Java" |
| 79 | + description="A popular language for building large-scale enterprise applications and Android apps." |
| 80 | + isComingSoon |
| 81 | + /> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + <SupportSection /> |
| 86 | + <Footer /> |
| 87 | + </div> |
| 88 | + ) |
| 89 | +} |
| 90 | + |
0 commit comments