Remove test component

This commit is contained in:
Dilson's Pickles
2023-02-15 11:58:51 +00:00
parent 25abe8b306
commit cd248f0036
2 changed files with 0 additions and 13 deletions

View File

@@ -1,12 +0,0 @@
import { useState } from 'react'
import { motion } from 'framer-motion'
function AnimationBanner() {
const [rotate, setRotate] = useState(false);
return (
<motion.div animate={{rotate: rotate ? 360 : 0}} onClick={() => setRotate(!rotate)} class="bg-blue-700 w-24 h-24 rounded-xl my-24 mx-auto"></motion.div>
)
}
export default AnimationBanner

View File

@@ -6,7 +6,6 @@ import AudacityLight from "../assets/img/AudacityLight.png";
import AudacityDark from "../assets/img/AudacityDark.png";
import Card from "../components/Card.astro";
import { Icon } from "astro-icon";
import AnimationBanner from "../components/AnimationBanner";
interface Frontmatter {
title: string;