feat: add tags ability to filter by tags

This commit is contained in:
Zakher Masri
2025-03-11 17:15:21 +03:00
parent 41e6f00685
commit 41f66e23a4
12 changed files with 1127 additions and 37 deletions

View File

@@ -1,11 +1,13 @@
import TemplateGrid from "./components/TemplateGrid";
import Navigation from "./components/Navigation";
import Search from "./components/Search";
import "./App.css";
function App() {
return (
<div>
<div className="min-h-screen">
<Navigation />
<Search />
<TemplateGrid />
</div>
);