Photography Gallery -> Gallery

This commit is contained in:
Chuck Dries 2022-07-12 12:44:11 -07:00
parent 288216ba50
commit bc1e67dd63
No known key found for this signature in database
GPG Key ID: A00B7AEAE1DC5BE6
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import Menu from "@spectrum-icons/workflow/Menu";
const Nav = ({ isClient, internalLinks, className }) => { const Nav = ({ isClient, internalLinks, className }) => {
const { observe, currentBreakpoint } = useDimensions({ const { observe, currentBreakpoint } = useDimensions({
breakpoints: { XS: 0, LG: 730 }, breakpoints: { XS: 0, LG: 690 },
updateOnBreakpointChange: true, updateOnBreakpointChange: true,
}); });
const [linksMenu, setLinksMenu] = useState(false); const [linksMenu, setLinksMenu] = useState(false);

View File

@ -137,7 +137,7 @@ const IndexPage = ({
<Nav <Nav
internalLinks={[ internalLinks={[
{ href: "/", label: "Home" }, { href: "/", label: "Home" },
{ href: "/photogallery/", label: "Photography Gallery" }, { href: "/photogallery/", label: "Gallery" },
]} ]}
isClient={isClient} isClient={isClient}
/> />