Browse Source

fix: show blog home on /blog

Signed-off-by: Muthu Kumar <muthukumar@thefeathers.in>
pull/1/head
Muthu Kumar 2 years ago
parent
commit
034c157ebc
Signed by: mkrhere GPG Key ID: 3FD688398897097E
  1. 1
      src/index.tsx

1
src/index.tsx

@ -24,6 +24,7 @@ createRoot(document.getElementById("root")!).render(
<Route path="/contact" element={<Contact />} />
<Route path="/live" element={<Live />} />
<Route path="/blog" element={<BlogHome />} />
<Route path="/blog/*" element={<BlogHome />} />
<Route path="/*" element={<NotFound />} />

Loading…
Cancel
Save