import { Dialog, Transition } from "@headlessui/react"; import { Fragment, useState } from "react"; import { FiInfo } from "react-icons/fi"; import styled, { css } from "styled-components"; const ModalContainer = styled.div` position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; `; export default function Info(){ const [open, setOpen] = useState(false); return ( <> setOpen(false)} >
Welcome to Riffusion

Riffusion is a fine-tuned Stable Diffusion model that generates spectrogram images from any text prompt.



These images are then converted into music.

); };