feat: integrate all components in App

This commit is contained in:
2026-03-11 14:49:56 +01:00
parent 924cc340b4
commit 5a14c7ac4c

16
src/App.jsx Normal file
View File

@@ -0,0 +1,16 @@
import BirthdayBanner from './components/BirthdayBanner'
import RoastGallery from './components/RoastGallery'
function App() {
return (
<div className="min-h-screen bg-gradient-to-b from-gray-50 to-gray-100">
<BirthdayBanner name="Linh" />
<RoastGallery />
<footer className="text-center py-8 text-gray-500">
<p>Made with 💖 for the birthday roast</p>
</footer>
</div>
)
}
export default App