removed old beta

This commit is contained in:
jackiettran
2025-09-19 22:33:44 -04:00
parent 649289bf90
commit 6199609a4d
5 changed files with 524 additions and 33 deletions

View File

@@ -1,7 +1,6 @@
import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import { AuthProvider } from './contexts/AuthContext';
import BetaPasswordProtection from './components/BetaPasswordProtection';
import Navbar from './components/Navbar';
import Footer from './components/Footer';
import Home from './pages/Home';
@@ -28,13 +27,12 @@ import './App.css';
function App() {
return (
<BetaPasswordProtection>
<AuthProvider>
<Router>
<div className="d-flex flex-column min-vh-100">
<Navbar />
<main className="flex-grow-1">
<Routes>
<AuthProvider>
<Router>
<div className="d-flex flex-column min-vh-100">
<Navbar />
<main className="flex-grow-1">
<Routes>
<Route path="/" element={<Home />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
@@ -137,7 +135,6 @@ function App() {
</div>
</Router>
</AuthProvider>
</BetaPasswordProtection>
);
}