This commit is contained in:
Sewmina 2025-08-02 06:22:31 +05:30
parent 4844dd82c9
commit 60f7f3b2e3
2 changed files with 12 additions and 2 deletions

View File

@ -281,6 +281,9 @@ export default function HeroSection() {
) : (
<section className="flex flex-col items-center text-center py-16">
<h1 className="text-4xl font-bold text-white mb-8">
Head-to-Head
</h1>
{/* <Image
src="/duelfiassets/Playing on Arcade Machine no BG.png"

View File

@ -8,7 +8,7 @@ export default function TopBanner() {
<>
{!isPracticeGameOpen && !isActiveGameOpen && (
<div className="w-full flex justify-center items-center">
<video
{/* <video
autoPlay
loop
muted
@ -17,7 +17,14 @@ export default function TopBanner() {
>
<source src="/duelfiassets/headervideo.MP4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</video> */}
<div className="flex flex-col items-center p-20">
<img src="/duelfiassets/Playing on Arcade Machine no BG.png" alt="Duelfi" className="w-full max-w-xs mb-8 rounded-lg" />
<h1 className="text-xl font-bold text-white">Beat Highscores or Beat Players. Get Paid in SOL.</h1>
<p className="text-xl text-gray-300">Choose your path; solo grind or direct duels. Skill always wins.</p>
</div>
</div>
)}
</>