Skip to content

Instantly share code, notes, and snippets.

@ashimon83
Last active March 16, 2022 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashimon83/293f48797a5e928642c6b78c373d7626 to your computer and use it in GitHub Desktop.
Save ashimon83/293f48797a5e928642c6b78c373d7626 to your computer and use it in GitHub Desktop.
next-svg
import Cat from '../svgs/cat.svg'
export default function Home() {
return (
<div className="container">
<marquee>SVG Cat!</marquee>
<Cat />
<style jsx>{`
.container {
width: 600px;
margin: 100px auto;
}
`}</style>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment