2025-11-08 23:26:44 -06:00
|
|
|
import { Button } from '@mui/material';
|
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
|
|
2025-11-08 23:07:44 -06:00
|
|
|
export default function Navbar() {
|
|
|
|
|
return (
|
2025-11-08 23:35:37 -06:00
|
|
|
<div className="flex flex-row gap-3">
|
2025-11-08 23:26:44 -06:00
|
|
|
<Button
|
|
|
|
|
component={Link}
|
|
|
|
|
to="/"
|
2025-11-08 23:35:37 -06:00
|
|
|
variant="outlined"
|
2025-11-08 23:26:44 -06:00
|
|
|
>
|
|
|
|
|
Home
|
|
|
|
|
</Button>
|
2025-11-08 23:35:37 -06:00
|
|
|
|
2025-11-08 23:26:44 -06:00
|
|
|
<Button
|
|
|
|
|
component={Link}
|
|
|
|
|
to="/article"
|
2025-11-08 23:35:37 -06:00
|
|
|
variant="outlined"
|
2025-11-08 23:26:44 -06:00
|
|
|
>
|
|
|
|
|
Article
|
|
|
|
|
</Button>
|
2025-11-08 23:07:44 -06:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|