2024-06-16 04:57:23 +00:00
|
|
|
import React from 'react'
|
|
|
|
import Main from './components/main'
|
|
|
|
import Navbar from './components/navbar'
|
|
|
|
import InfogramBelowMain from './components/infobelowmain'
|
2024-06-11 03:46:47 +00:00
|
|
|
// import logo from './logo.svg';
|
|
|
|
// import './App.css';
|
|
|
|
|
2024-06-16 04:57:23 +00:00
|
|
|
function App () {
|
2024-06-11 03:46:47 +00:00
|
|
|
return (
|
2024-06-12 02:37:31 +00:00
|
|
|
<div style={{ zIndex: 9999 }}>
|
2024-06-16 04:57:23 +00:00
|
|
|
<Main />
|
|
|
|
<InfogramBelowMain />
|
|
|
|
<br />
|
2024-06-11 03:46:47 +00:00
|
|
|
</div>
|
2024-06-16 04:57:23 +00:00
|
|
|
)
|
2024-06-11 03:46:47 +00:00
|
|
|
}
|
|
|
|
|
2024-06-16 04:57:23 +00:00
|
|
|
export default App
|