chore: ui improvements + add github button

This commit is contained in:
Zakher Masri
2025-03-11 16:03:44 +03:00
parent 197f4e20f7
commit 42302fd53d
10 changed files with 277 additions and 86 deletions

View File

@@ -1,9 +1,13 @@
import TemplateGrid from './components/TemplateGrid';
import './App.css';
import TemplateGrid from "./components/TemplateGrid";
import Navigation from "./components/Navigation";
import "./App.css";
function App() {
return (
<div>
<Navigation />
<TemplateGrid />
</div>
);
}