import React from "react"; import Link from "next/link"; import { Box, Text, Icon, Image, Center } from "@chakra-ui/react"; import Hover from "animations/hover"; const Index = ({ title, url, href }) => { return ( {title} ); }; export default Index;