mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-06-01 19:51:06 -05:00
Remove test component
This commit is contained in:
@@ -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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user