post CLAUDE updates

had CLAUDE AI made suggestions and edits to code.
added all route and moves some requirements around.
This commit is contained in:
2025-06-17 06:13:59 -04:00
parent 80276d4b74
commit 99d3fbc2b3
13 changed files with 12893 additions and 86 deletions

View File

@@ -1,10 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
import './index.css';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</React.StrictMode>
</StrictMode>,
);