feat: integrate all components in App
This commit is contained in:
16
src/App.jsx
Normal file
16
src/App.jsx
Normal 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
|
||||
Reference in New Issue
Block a user