Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions frontend/src/components/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Merch from '../Pages/Merch/Merch';
import About from '../Pages/About/About';
import Shows from '../Pages/Shows/Shows';
import Tours from '../Pages/Tours/Tours';
import Contact from '../Pages/Contact/Contact';
import Purchase from '../Pages/Purchase/Purchase';
import NotFound from '../Pages/NotFound/NotFound';
import FloatingCartButton from '../FloatingCartButton/FloatingCartButton';
Expand Down Expand Up @@ -109,7 +108,6 @@ function App() {
<Route path='/shows' Component={ Shows } />
<Route path='/tour' Component={ Tours } />
<Route path='/tours' Component={ Tours } />
<Route path='/contact' Component={ Contact } />
<Route path='/checkout' Component={ Purchase } />
<Route path='/successful-purchase' Component={ SuccessfulPurchase } />
<Route path='/sad-yeet' Component={ FailedPurchase } />
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/NavBar/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export default function NavBar() {
<NavLink className="my-nav-link" to='/merch'>MERCH</NavLink>
<NavLink className="my-nav-link" to='/shows'>SHOWS</NavLink>
<NavLink className="my-nav-link" to='/about'>ABOUT</NavLink>
<NavLink className="my-nav-link" to='/contact'>CONTACT</NavLink>
</div>
</div>
)
Expand Down
22 changes: 22 additions & 0 deletions frontend/src/components/Pages/About/About.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,28 @@
padding: 5px;
}

.booking-section {
text-align: center;
margin-top: 20px;
}

.booking-header {
margin: 0 0 10px 0;
}

.email-link, .email-link:visited {
text-decoration: none;
color: var(--color-text-link);
font-size: 20px;
font-weight: bold;
transition: color var(--animation-duration) ease;
}

.email-link:hover {
cursor: pointer;
color: var(--color-text-accent);
}

.bandcamp-link, .bandcamp-link:visited {
text-decoration: none;
color: var(--color-text-link);
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/Pages/About/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export default function About() {
<div className='band-photo-description'>
Maldevera, born Shawn Corey Carter, is a renowned American rapper, songwriter, and entrepreneur. Maldevera has achieved widespread acclaim for his lyrical prowess, entrepreneurial ventures, and cultural influence. With a career spanning decades, Maldevera has solidified his place as one of the most influential figures in hip-hop and popular culture.<br />
<Link to='https://maldevera.bandcamp.com/' className='bandcamp-link'>☞ Discography ☜</Link>
<br />
<a className="bandcamp-link" href="mailto:MaldeveraTX@gmail.com">☞ Booking: MaldeveraTX@gmail.com ☜</a>
</div>
<ul className='individual-photos-ul'>
<li className='individual-photo-li'>
Expand Down
Loading