Spaces:
Paused
Paused
Update components/GlassDock.js
Browse files- components/GlassDock.js +7 -17
components/GlassDock.js
CHANGED
|
@@ -2,31 +2,21 @@ import Link from 'next/link';
|
|
| 2 |
|
| 3 |
export default function GlassDock() {
|
| 4 |
return (
|
| 5 |
-
|
| 6 |
-
<div className="fixed bottom-10 left-0 right-0 z-50 flex justify-center items-center gap-10 pointer-events-none mb-safe">
|
| 7 |
|
| 8 |
-
{/*
|
| 9 |
<Link href="/" className="pointer-events-auto active:scale-90 transition-transform">
|
| 10 |
-
<img
|
| 11 |
-
src="/assets/home_icon_blue.png"
|
| 12 |
-
className="w-20 h-20 drop-shadow-xl filter hover:brightness-110"
|
| 13 |
-
/>
|
| 14 |
</Link>
|
| 15 |
|
| 16 |
-
{/*
|
| 17 |
<Link href="/create" className="pointer-events-auto active:scale-90 transition-transform">
|
| 18 |
-
<img
|
| 19 |
-
src="/assets/upload_button_blue.png"
|
| 20 |
-
className="w-20 h-20 drop-shadow-xl filter hover:brightness-110"
|
| 21 |
-
/>
|
| 22 |
</Link>
|
| 23 |
|
| 24 |
-
{/*
|
| 25 |
<Link href="/profile" className="pointer-events-auto active:scale-90 transition-transform">
|
| 26 |
-
<img
|
| 27 |
-
src="/assets/user_icon_blue.png"
|
| 28 |
-
className="w-20 h-20 drop-shadow-xl filter hover:brightness-110"
|
| 29 |
-
/>
|
| 30 |
</Link>
|
| 31 |
|
| 32 |
</div>
|
|
|
|
| 2 |
|
| 3 |
export default function GlassDock() {
|
| 4 |
return (
|
| 5 |
+
<div className="fixed bottom-10 left-0 right-0 z-50 flex justify-center items-center gap-12 pointer-events-none mb-safe">
|
|
|
|
| 6 |
|
| 7 |
+
{/* Home */}
|
| 8 |
<Link href="/" className="pointer-events-auto active:scale-90 transition-transform">
|
| 9 |
+
<img src="/assets/home_icon_blue.png" className="w-16 h-16 drop-shadow-lg" />
|
|
|
|
|
|
|
|
|
|
| 10 |
</Link>
|
| 11 |
|
| 12 |
+
{/* Upload (Same Size) */}
|
| 13 |
<Link href="/create" className="pointer-events-auto active:scale-90 transition-transform">
|
| 14 |
+
<img src="/assets/upload_button_blue.png" className="w-16 h-16 drop-shadow-lg" />
|
|
|
|
|
|
|
|
|
|
| 15 |
</Link>
|
| 16 |
|
| 17 |
+
{/* Profile (Same Size) */}
|
| 18 |
<Link href="/profile" className="pointer-events-auto active:scale-90 transition-transform">
|
| 19 |
+
<img src="/assets/user_icon_blue.png" className="w-16 h-16 drop-shadow-lg" />
|
|
|
|
|
|
|
|
|
|
| 20 |
</Link>
|
| 21 |
|
| 22 |
</div>
|