i did some work

This commit is contained in:
Saahil dutta 2024-06-16 00:57:13 -04:00
parent 6e2a3cd870
commit fbec2dddc7
25 changed files with 600 additions and 248 deletions

View file

@ -6,15 +6,22 @@ import App from './App';
import reportWebVitals from './reportWebVitals';
import Background from './bg/main';
import { injectOneko } from './scripts/oneko';
import Navbar from './components/navbar';
import { runTitle } from './scripts/title';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
document.title = "Saahild.com"
injectOneko();
runTitle()
document.title = 'React App';
root.render(
<React.StrictMode>
<Background />
<Navbar />
<App />
</React.StrictMode>
);