chore; update the git ignore file

This commit is contained in:
Mann Patel
2025-09-05 15:40:05 -06:00
parent 05001a53e0
commit 287068becf
2 changed files with 6 additions and 39 deletions

6
.gitignore vendored
View File

@@ -4,3 +4,9 @@ app/tmp/*
*.env
*.DS_Store
misc-code/menu.html
misccode/index.html
misccode/menu.html
misccode/tmp/build-errors.log
misc-code/menu.html
misc-code/menu.html

View File

@@ -1,39 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Chakra-like Table</title>
</head>
<body class="bg-gray-50 p-10">
<div class="overflow-x-auto">
<table class="min-w-full bg-white border border-gray-200 rounded-lg">
<thead class="bg-teal-500 text-white">
<tr>
<th class="px-6 py-3 text-left">Name</th>
<th class="px-6 py-3 text-left">Age</th>
<th class="px-6 py-3 text-left">City</th>
</tr>
</thead>
<tbody>
<tr class="border-b">
<td class="px-6 py-4">Mann</td>
<td class="px-6 py-4">21</td>
<td class="px-6 py-4">Calgary</td>
</tr>
<tr class="border-b bg-gray-50">
<td class="px-6 py-4">Alice</td>
<td class="px-6 py-4">25</td>
<td class="px-6 py-4">Toronto</td>
</tr>
<tr>
<td class="px-6 py-4">Bob</td>
<td class="px-6 py-4">30</td>
<td class="px-6 py-4">Vancouver</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>