First Draft of the Search Screen and also logo

This commit is contained in:
Sahej Panag
2024-03-26 15:21:20 -04:00
parent 57e2da94ff
commit dfbd6aa3fb
5 changed files with 102 additions and 1 deletions

View File

@@ -1,10 +1,20 @@
import './App.css'
import MainSearch from './components/MainSearch';
function App() {
return (
<>
<h1>PeerNotes</h1>
<div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' }}>
<img
src="/PeerNotes.png"
alt="PeerNotes Logo"
style={{
height: "100px"
}}
/>
<MainSearch />
</div>
</>
)
}