Skip to content

Commit

Permalink
Fixed a few broken nav links
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscarrollsmith committed Mar 18, 2024
1 parent 747465d commit f063d78
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/components/SimpleNav.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
import React from 'react';
import { HashLink } from 'react-router-hash-link';
import { Link } from 'react-router-dom';
import './SimpleNav.css';

const FullNav: React.FC = () => {
return (
<div className="mx-auto space-x-6">
<div className="simplenavlinks">
<HashLink to="/#" className="simplenavlink">Home</HashLink>
<HashLink to="#contact" className="simplenavlink">
<HashLink to="/#contact" className="simplenavlink">
Contact
</HashLink>
<HashLink to="#story" className="simplenavlink">
<HashLink to="/#story" className="simplenavlink">
Story
</HashLink>
<HashLink to="#events" className="simplenavlink">
<HashLink to="/#events" className="simplenavlink">
Events
</HashLink>
<HashLink to="#credits" className="simplenavlink">
<HashLink to="/#credits" className="simplenavlink">
Credits
</HashLink>
<HashLink to="/Legal" className="simplenavlink">
Privacy Policy
</HashLink>
<HashLink to="/Store" className="simplenavlink">
Store
</HashLink>
<HashLink to="/Legal" className="simplenavlink">
Privacy Policy
</HashLink>
</div>
</div>
);
Expand Down

0 comments on commit f063d78

Please sign in to comment.