Add an interactive 3D weather-journey landing page for Abrban at the site root.

Replace the root redirect with a scroll-driven three.js scene that flies from
overcast clouds through rain and a thunderstorm into a clear blue sunny sky,
fronted by Persian/RTL marketing sections. The dashboard at /dashboard is
untouched.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
keyhan
2026-06-09 00:10:33 +03:30
parent dd1e70d80f
commit dfacfdc6cf
22 changed files with 2182 additions and 15 deletions
@@ -0,0 +1,24 @@
import Link from 'next/link';
import { Logo } from '../Logo';
export function Footer() {
return (
<footer className="relative border-t border-white/15 bg-slate-950/35 px-6 py-12 backdrop-blur-md">
<div className="mx-auto flex max-w-6xl flex-col items-center justify-between gap-6 sm:flex-row">
<Logo className="abrban-ink" />
<nav className="abrban-ink flex items-center gap-6 text-sm text-white/80">
<Link href="/login" className="transition hover:text-white">
ورود
</Link>
<Link href="/register" className="transition hover:text-white">
ثبتنام
</Link>
<Link href="/dashboard" className="transition hover:text-white">
داشبورد
</Link>
</nav>
<p className="abrban-ink text-sm text-white/70">© ابربان همهٔ حقوق محفوظ است</p>
</div>
</footer>
);
}