|
| 1 | +import { Users, CircleHelp, BookOpen } from "lucide-react"; |
| 2 | + |
| 3 | +export default function Features() { |
| 4 | + return ( |
| 5 | + <section className="bg-background py-20"> |
| 6 | + <div className="outer"> |
| 7 | + <div className="inner"> |
| 8 | + <div className="flex-1 flex flex-col items-center text-center py-6"> |
| 9 | + <Users size={48} className="text-accent mb-2" /> |
| 10 | + <h3 className="text-secondary text-xl mb-2 font-mono"> |
| 11 | + Active Community |
| 12 | + </h3> |
| 13 | + <p className="text-secondary text-sm"> |
| 14 | + Connect with like-minded developers and build lasting |
| 15 | + relationships. |
| 16 | + </p> |
| 17 | + </div> |
| 18 | + <div className="self-center bg-[rgba(255,255,255,0.1)] bg-clip-border bg-origin-padding bg-scroll bg-repeat shadow-[0px_0px_70px_15px_rgba(0,0,0,0.75)] box-border text-white font-sans font-[cv05_ss01_ss03_zero] text-base leading-6 h-[100px] w-[1px] text-left hidden lg:block"></div> |
| 19 | + |
| 20 | + <div className="flex-1 flex flex-col items-center text-center py-6 font-mono"> |
| 21 | + <CircleHelp size={48} className="text-accent mb-2" /> |
| 22 | + <h3 className="text-secondary text-xl mb-2">Some other thing</h3> |
| 23 | + <p className="text-secondary text-sm"> |
| 24 | + Description about that other thing. |
| 25 | + </p> |
| 26 | + </div> |
| 27 | + <div className="self-center bg-[rgba(255,255,255,0.1)] bg-clip-border bg-origin-padding bg-scroll bg-repeat shadow-[0px_0px_70px_15px_rgba(0,0,0,0.75)] box-border text-white font-sans font-[cv05_ss01_ss03_zero] text-base leading-6 h-[100px] w-[1px] text-left hidden lg:block"></div> |
| 28 | + |
| 29 | + <div className="flex-1 flex flex-col items-center text-center py-6"> |
| 30 | + <BookOpen size={48} className="text-accent mb-2" /> |
| 31 | + <h3 className="text-secondary text-xl mb-2 font-mono"> |
| 32 | + Learning Resources |
| 33 | + </h3> |
| 34 | + <p className="text-secondary text-sm"> |
| 35 | + Access curated learning materials and documentation. |
| 36 | + </p> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + </section> |
| 41 | + ); |
| 42 | +} |
0 commit comments