summaryrefslogtreecommitdiff
path: root/src/App.tsx
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-04 16:06:05 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-04 16:06:05 +0000
commit1e03595e08608bbb8084c549c2ab91993e035bf1 (patch)
tree997ee34d4ebc38f25023a607dbf1a74afc78d7ce /src/App.tsx
parent389f0c985b5a1e117c1db2273080cc1b74dd61fe (diff)
Add Tailwind CSS integration and update dependencies
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/App.tsx b/src/App.tsx
index 3d7ded3..aaeba0a 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -8,12 +8,12 @@ function App() {
return (
<>
- <div>
- <a href="https://vite.dev" target="_blank">
- <img src={viteLogo} className="logo" alt="Vite logo" />
+ <div className="flex gap-8 justify-center mb-8">
+ <a href="https://vite.dev" target="_blank" rel="noreferrer" className="hover:drop-shadow-lg transition-all">
+ <img src={viteLogo} className="h-24 w-24" alt="Vite logo" />
</a>
- <a href="https://react.dev" target="_blank">
- <img src={reactLogo} className="logo react" alt="React logo" />
+ <a href="https://react.dev" target="_blank" rel="noreferrer" className="hover:drop-shadow-lg transition-all">
+ <img src={reactLogo} className="h-24 w-24" alt="React logo" />
</a>
</div>
<h1>Vite + React</h1>