Skip to content

Commit

Permalink
Add video demo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaenovsky committed Oct 1, 2024
1 parent 46be11a commit dc4c5f2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Binary file added public/beer-pong-xr-gameplay.mp4
Binary file not shown.
22 changes: 22 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,28 @@ export default function HomePage() {
</div>
</div>
</section>
{/* Video Section */}
<section className="py-16 bg-gray-900">
<div className="container mx-auto px-4">
<h2 className="text-3xl font-bold mb-8 text-center text-white">Demo</h2>
<div className="max-w-3xl mx-auto bg-gray-800 rounded-lg shadow-lg overflow-hidden">
<video
className="w-full h-auto"
controls
preload="metadata"
poster="/placeholder.svg?height=720&width=1280"
>
<source src="/beer-pong-xr-gameplay.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div className="p-6">
<p className="text-gray-300 text-center">
Watch the gameplay to know more about this beer pong in space experience.
</p>
</div>
</div>
</div>
</section>
</main>

<footer className="bg-gray-800 text-center p-6 mt-12">
Expand Down

0 comments on commit dc4c5f2

Please sign in to comment.