Skip to content

Commit

Permalink
Update src/app/components/Footer.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Wheeler <[email protected]>
  • Loading branch information
nickbristow and jakewheeler authored Oct 23, 2024
1 parent f849c57 commit 84bc695
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ import { usePathname } from "next/navigation";
import React from "react";
import styles from "../styles/Home.module.scss"

interface NavigationLinkProps {
href: string;
text: string;
onClick?: () => void;
interface NavigationLinkProps extends Pick<LinkProps, 'href' | 'onClick'> {
children: React.ReactNode;
}

export default function Footer() {
Expand Down

0 comments on commit 84bc695

Please sign in to comment.