import styled, { keyframes } from "styled-components"; const hueShift = keyframes` 0% { filter: hue-rotate(0deg); } 50% { filter: hue-rotate(170deg); } 100% { filter: hue-rotate(0deg); } `; const TextTitle = styled.h1` background-clip: text; background-image: linear-gradient(90deg, #0077e7, #01d8d1); filter: hue-rotate(0deg); animation: ${hueShift} 10s infinite linear 1s; padding-bottom: 5px; `; export default function CoolHeaderText() { return ( <>