29 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
|     </div>
 | |
| 
 | |
|     <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
 | |
|       <div class="mt-12 rounded shadow overflow-hidden shadow divide-y divide-crust sm:divide-y-0 sm:grid sm:grid-cols-2 sm:gap-px">
 | |
|         {%- for navItem in links -%}
 | |
|           <div class="relative group bg-base/75 p-6">
 | |
|             <h3 class="text-lg">
 | |
|               <a href="{{navItem.url}}" class="link">
 | |
|                 <!-- Extend touch target to entire panel -->
 | |
|                 <span class="absolute inset-0" aria-hidden="true"></span>
 | |
|                 {{navItem.title}}
 | |
|               </a>
 | |
|             </h3>
 | |
|             <p class="mt-2 text-sm text-text">
 | |
|               {{navItem.description}}
 | |
|             </p>
 | |
|           </div>
 | |
|         {%- endfor -%}
 | |
|       </div>
 | |
|     </div>
 | |
| 
 | |
|     <footer class="mt-12 bg-base/75 py-4 px-4">
 | |
|       <div class="text-subtext1">
 | |
|         Built in <a class="link" href="https://www.11ty.dev/">Eleventy</a> with <a class="link" href="https://tailwindcss.com/">TailwindCSS</a> and a 🐈 <a class="link" href="https://github.com/catppuccin">Catppuccin color palette</a>, 🍴 <a class="link" href="https://git.gay/gaiety/portfolio">Fork it Here</a>
 | |
|       </div>
 | |
|     </footer>
 | |
|   </body>
 | |
| </html>
 | |
| 
 | 
