Files
PeerNotes/frontend/src/App.tsx

31 lines
652 B
TypeScript
Raw Normal View History

2024-03-24 18:02:40 -04:00
import "./styles/App.css";
import { Link } from 'react-router-dom';
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 />
<div className="App" style={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', height: '100vh' , gap: 15}}>
<img
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>
);
}