initial commit for GitHub

This commit is contained in:
Lucas Jensen
2024-12-01 19:15:25 -08:00
commit 925b334e4c
91 changed files with 8031 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
import { Col, Container, ListGroup, Row } from "react-bootstrap";
import "./Header.css";
export default function NavList() {
return (
<Container>
<Row className="justify-content-center">
<Col xs="auto">
<ListGroup horizontal className="justify-content-center navbar-title">
<ListGroup.Item>
<a href="#discography">Music</a>
</ListGroup.Item>
<ListGroup.Item>
<a href="#artwork">Art</a>
</ListGroup.Item>
<ListGroup.Item>
<a href="#videos">Videos</a>
</ListGroup.Item>
<ListGroup.Item>
<a href="#about">About</a>
</ListGroup.Item>
<ListGroup.Item disabled>News</ListGroup.Item>
</ListGroup>
</Col>
</Row>
</Container>
);
}