2024-03-24 18:02:40 -04:00
|
|
|
import "./styles/App.css";
|
|
|
|
|
import { Link } from 'react-router-dom';
|
2024-03-26 15:21:20 -04:00
|
|
|
import MainSearch from './components/MainSearch';
|
2024-03-12 16:21:30 -04:00
|
|
|
|
2024-03-24 18:02:40 -04:00
|
|
|
export default function App() {
|
2024-03-12 16:21:30 -04:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
2024-03-24 18:02:40 -04:00
|
|
|
<Navbar />
|
2024-04-11 00:44:10 -04:00
|
|
|
<div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' , gap: 15}}>
|
|
|
|
|
<img
|
2024-03-26 15:21:20 -04:00
|
|
|
src="/PeerNotes.png"
|
|
|
|
|
alt="PeerNotes Logo"
|
|
|
|
|
style={{
|
|
|
|
|
height: "100px"
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
<MainSearch />
|
|
|
|
|
</div>
|
2024-03-12 16:21:30 -04:00
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-24 18:02:40 -04:00
|
|
|
function Navbar() {
|
|
|
|
|
return (
|
|
|
|
|
<nav>
|
|
|
|
|
<Link to="/">Home</Link>
|
|
|
|
|
<Link to="/logout">Logout</Link>
|
|
|
|
|
</nav>
|
|
|
|
|
);
|
|
|
|
|
}
|