|
| 1 | +export const Footer = () => { |
| 2 | + return ( |
| 3 | + <> |
| 4 | + <footer className="bg-blue-950 text-blue-300 py-12"> |
| 5 | + <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| 6 | + <div className="border-t border-blue-800 mb-4"></div> |
| 7 | + <div className="grid md:grid-cols-3 gap-8"> |
| 8 | + <div className="md:col-span-2"> |
| 9 | + <div className="flex items-center space-x-3 mb-4"> |
| 10 | + <div className="text-2xl">⚛️</div> |
| 11 | + <div className="text-xl font-bold text-white"> |
| 12 | + React Design Patterns |
| 13 | + </div> |
| 14 | + </div> |
| 15 | + <p className="text-blue-200 mb-4 max-w-md"> |
| 16 | + Master React design patterns through interactive |
| 17 | + Pokemon-themed exercises. From fundamentals to |
| 18 | + advanced techniques. |
| 19 | + </p> |
| 20 | + <div className="flex space-x-4"> |
| 21 | + <a |
| 22 | + href="https://github.com/code-mattclaffey/react-design-patterns" |
| 23 | + className="text-blue-200 hover:text-white transition-colors duration-200" |
| 24 | + target="_blank" |
| 25 | + rel="noreferrer" |
| 26 | + aria-label="View React Design Patterns on GitHub" |
| 27 | + > |
| 28 | + <svg |
| 29 | + className="w-6 h-6" |
| 30 | + fill="currentColor" |
| 31 | + viewBox="0 0 24 24" |
| 32 | + > |
| 33 | + <path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" /> |
| 34 | + </svg> |
| 35 | + </a> |
| 36 | + </div> |
| 37 | + </div> |
| 38 | + |
| 39 | + <div> |
| 40 | + <h3 className="text-white font-semibold mb-4"> |
| 41 | + Course |
| 42 | + </h3> |
| 43 | + <ul className="space-y-2"> |
| 44 | + <li> |
| 45 | + <a |
| 46 | + href="/storybook?path=/docs/introduction-01-welcome--docs" |
| 47 | + className="text-blue-200 hover:text-white transition-colors duration-200" |
| 48 | + > |
| 49 | + Bronze Level |
| 50 | + </a> |
| 51 | + </li> |
| 52 | + <li> |
| 53 | + <a |
| 54 | + href="/storybook?path=/docs/introduction-01-welcome--docs" |
| 55 | + className="text-blue-200 hover:text-white transition-colors duration-200" |
| 56 | + > |
| 57 | + Silver Level |
| 58 | + </a> |
| 59 | + </li> |
| 60 | + <li> |
| 61 | + <a |
| 62 | + href="/storybook?path=/docs/introduction-01-welcome--docs" |
| 63 | + className="text-blue-200 hover:text-white transition-colors duration-200" |
| 64 | + > |
| 65 | + Gold Level |
| 66 | + </a> |
| 67 | + </li> |
| 68 | + <li> |
| 69 | + <a |
| 70 | + href="/storybook?path=/docs/introduction-01-welcome--docs" |
| 71 | + className="text-blue-200 hover:text-white transition-colors duration-200" |
| 72 | + > |
| 73 | + All Patterns |
| 74 | + </a> |
| 75 | + </li> |
| 76 | + </ul> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + |
| 80 | + <div className="border-t border-blue-800 mt-8 pt-8 text-center text-blue-200"> |
| 81 | + <p> |
| 82 | + Made with ❤️ by{' '} |
| 83 | + <a |
| 84 | + href="https://github.com/code-mattclaffey" |
| 85 | + target="_blank" |
| 86 | + rel="noreferrer" |
| 87 | + className="underline-offset-1 underline font-semibold hover:text-white transition-colors duration-200" |
| 88 | + > |
| 89 | + @code-mattclaffey |
| 90 | + </a> |
| 91 | + </p> |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + </footer> |
| 95 | + </> |
| 96 | + ); |
| 97 | +}; |
0 commit comments