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

@ -1,5 +1,7 @@
import React from 'react';
import Main from './components/main';
import Navbar from './components/navbar';
import InfogramBelowMain from './components/infobelowmain';
// import logo from './logo.svg';
// import './App.css';
@ -7,6 +9,8 @@ function App() {
return (
<div style={{ zIndex: 9999 }}>
<Main />
<InfogramBelowMain />
<br />
</div>
);
}