"use client"; import Button from "@/_components/Button"; import links from "@/_data/links"; import skills from "@/_data/skills"; import shared from "@/_styles/gallery.module.scss"; import ArrowDownload24Regular from "@fluentui/svg-icons/icons/arrow_download_24_regular.svg"; import ChevronLeft24Regular from "@fluentui/svg-icons/icons/chevron_left_24_regular.svg"; import ChevronRight24Regular from "@fluentui/svg-icons/icons/chevron_right_24_regular.svg"; import Image from "next/image"; import React, { useCallback, useId, useState } from "react"; import cls from "./SkillsSection.module.scss"; const SkillsSection: React.FC = () => { const [selection, setSelection] = useState(0); const illustrations = useId(); const select = useCallback((index: number) => { setSelection(index); window.clarity?.("set", "checked", "skills"); }, []); return (
{ skills.map((i, index) =>
); }; export default SkillsSection;