diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx new file mode 100644 index 0000000..b823984 --- /dev/null +++ b/src/components/Logo.tsx @@ -0,0 +1,195 @@ +export default function Logo() { + return ( + + + + + + + + + + ); + } + \ No newline at end of file diff --git a/src/index.css b/src/index.css index dc36a44..433e590 100644 --- a/src/index.css +++ b/src/index.css @@ -5,3 +5,29 @@ body { background-color: rgb(23 23 23); } + +@keyframes color-fill-anime { + 0% { + fill: #F8C3CD; + } + + 28% { + fill: #F4A7B9; + } + + 56% { + fill: #F596AA; + } + + 84% { + fill: #E16B8C; + } + + 100% { + fill: #DB4D6D; + } +} + +.color-fill { + animation: color-fill-anime 4s linear infinite alternate forwards; +}