before race

This commit is contained in:
root
2025-12-21 07:51:51 +01:00
parent f2c3b04a88
commit 872e5a1a6a
9 changed files with 340 additions and 55 deletions

39
app/past-drops/page.tsx Normal file
View File

@@ -0,0 +1,39 @@
'use client'
import Nav from '../components/Nav'
import PastDrops from '../components/PastDrops'
import Footer from '../components/Footer'
export default function PastDropsPage() {
return (
<>
<Nav />
<section className="container" style={{ paddingTop: '120px' }}>
<a
href="/"
style={{
display: 'inline-flex',
alignItems: 'center',
color: 'var(--muted)',
textDecoration: 'none',
fontSize: '14px',
marginBottom: '30px',
transition: 'color 0.2s',
}}
onMouseEnter={(e) => {
e.currentTarget.style.color = 'var(--text)'
}}
onMouseLeave={(e) => {
e.currentTarget.style.color = 'var(--muted)'
}}
>
Back
</a>
<h1 style={{ marginBottom: '40px' }}>Past Drops</h1>
<PastDrops />
</section>
<Footer />
</>
)
}