|
| 1 | +import { Smile } from "lucide-react"; |
| 2 | + |
| 3 | +export default function Showcase() { |
| 4 | + return ( |
| 5 | + <section className="flex flex-col items-center bg-secondary py-20"> |
| 6 | + <h2 className="text-xl md:text-xl lg:text-4xl mb-6"> |
| 7 | + Community Showcase |
| 8 | + </h2> |
| 9 | + {/*<div className="outer">*/} |
| 10 | + {/* <div className="inner">*/} |
| 11 | + <div className="flex flex-1"> |
| 12 | + <div className="outer"> |
| 13 | + <div className="inner min-h-full"> |
| 14 | + <div className="flex-1 flex flex-col text-center px-6 py-6"> |
| 15 | + <div className="flex flex-1 justify-start"> |
| 16 | + <Smile size={48} className="text-accent mb-2 mr-4" /> |
| 17 | + <h3 className="flex flex-col items-start text-secondary text-xl mb-2 font-mono"> |
| 18 | + Sarah Johnson |
| 19 | + <span className="text-sm">Task Manager App</span> |
| 20 | + </h3> |
| 21 | + </div> |
| 22 | + <p className="text-secondary text-left text-md max-w-full"> |
| 23 | + A sleek, intuitive task management application built with React |
| 24 | + and Node.js. |
| 25 | + </p> |
| 26 | + </div> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + {/*<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>*/} |
| 30 | + <div className="outer"> |
| 31 | + <div className="inner min-h-full"> |
| 32 | + <div className="flex-1 flex flex-col text-center px-6 py-6"> |
| 33 | + <div className="flex flex-1 justify-start"> |
| 34 | + <Smile size={48} className="text-accent mb-2 mr-4" /> |
| 35 | + <h3 className="flex flex-col items-start text-secondary text-xl mb-2 font-mono"> |
| 36 | + Mike Chen |
| 37 | + <span className="text-sm">Weather Dashboard</span> |
| 38 | + </h3> |
| 39 | + </div> |
| 40 | + <p className="text-secondary text-left text-md max-w-full"> |
| 41 | + Real-time weather information visualized beautifully using D3.js |
| 42 | + and OpenWeatherMap API. |
| 43 | + </p> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + {/*<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>*/} |
| 48 | + <div className="outer"> |
| 49 | + <div className="inner min-h-full"> |
| 50 | + <div className="flex-1 flex flex-col text-center px-6 py-6"> |
| 51 | + <div className="flex flex-1 justify-start"> |
| 52 | + <Smile size={48} className="text-accent mb-2 mr-4" /> |
| 53 | + <h3 className="flex flex-col items-start text-secondary text-xl mb-2 font-mono"> |
| 54 | + Emily Rodriguez |
| 55 | + <span className="text-sm">Code Snippet Library</span> |
| 56 | + </h3> |
| 57 | + </div> |
| 58 | + <p className="text-secondary text-left text-md max-w-full"> |
| 59 | + A collaborative platform for developers to share and discover |
| 60 | + useful code snippets. |
| 61 | + </p> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + {/* </div>*/} |
| 67 | + {/*</div>*/} |
| 68 | + </section> |
| 69 | + ); |
| 70 | +} |
0 commit comments