import links from "@/_data/links"; import Link from "next/link"; import React from "react"; import cls from "./NavigationLinks.module.scss"; const navLinks: { text: string, href: string; }[] = [ { text: "Home", href: "/" }, { text: "My skills", href: "/#skills" }, { text: "Projects", href: "/#projects" }, { text: "About", href: "/#about" }, { text: "Contacts", href: "/#contacts" } ]; const NavigationLinks: React.FC = ({ links: linkProps, ...props }) => ( ); export default NavigationLinks; export type NavigationLinksProps = React.HTMLAttributes & { links?: Omit, "href">; };