Merged Ombase's changes in main branch from frontend branch.

- Landing page
- Login page
- Sign-up page
This commit is contained in:
K
2025-02-26 12:06:47 +05:30
parent 7e02ff5ba0
commit ddb39e4258
22 changed files with 5518 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.jsx";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>
);