From cd248f0036e72c0480da7152db2cd54d306dfe74 Mon Sep 17 00:00:00 2001 From: Dilson's Pickles Date: Wed, 15 Feb 2023 11:58:51 +0000 Subject: [PATCH] Remove test component --- src/components/AnimationBanner.jsx | 12 ------------ src/pages/index.astro | 1 - 2 files changed, 13 deletions(-) delete mode 100644 src/components/AnimationBanner.jsx diff --git a/src/components/AnimationBanner.jsx b/src/components/AnimationBanner.jsx deleted file mode 100644 index 0e5ec9f..0000000 --- a/src/components/AnimationBanner.jsx +++ /dev/null @@ -1,12 +0,0 @@ -import { useState } from 'react' -import { motion } from 'framer-motion' - -function AnimationBanner() { - const [rotate, setRotate] = useState(false); - - return ( - setRotate(!rotate)} class="bg-blue-700 w-24 h-24 rounded-xl my-24 mx-auto"> - ) -} - -export default AnimationBanner \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index ffacbdf..70ac304 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -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;