File size: 571 Bytes
ddaefb9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import "./App.css"
import { Card2 } from "./components/myc2"
import { CardWithForm } from "./components/mycard1"
function App() {
return (
<>
<div className="flex flex-col items-center justify-center min-h-svh">
<h1 className="text-3xl font-bold mb-8 hover:text-fuchsia-500 hover:scale-105 transition-all duration-200">
Smell Panties
</h1>
<div className="flex flex-row flex-wrap justify-center gap-6 max-w-full">
<CardWithForm />
<Card2 />
</div>
</div>
</>
)
}
export default App
|