feat : add front-end using shad cn

This commit is contained in:
ARJUN S THAMPI
2026-03-12 17:56:52 +05:30
parent 521a1fea79
commit ded04fca7f
34 changed files with 10304 additions and 0 deletions

14
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
import {AuthProvider} from "./context/AuthContext";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<AuthProvider>
<App />
</AuthProvider>
</React.StrictMode>,
);