You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aplesports/src/views/AsianRumble.vue

55 lines
2.4 KiB
Vue

<template>
<div class="regional">
<div class="bg-only"></div>
<section class="hero">
<div class="goback" @click="goback">
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m9.474 5.209s-4.501 4.505-6.254 6.259c-.147.146-.22.338-.22.53s.073.384.22.53c1.752 1.754 6.252 6.257 6.252 6.257.145.145.336.217.527.217.191-.001.383-.074.53-.221.293-.293.294-.766.004-1.057l-4.976-4.976h14.692c.414 0 .75-.336.75-.75s-.336-.75-.75-.75h-14.692l4.978-4.979c.289-.289.287-.761-.006-1.054-.147-.147-.339-.221-.53-.221-.191-.001-.38.071-.525.215z" fill-rule="nonzero"/></svg>
<p>back to Regional Rumble</p>
</div>
<img alt="Regional Rumble APAC Logo" src="https://cms.aplesports.com/storage/uploads/2023/09/18/65086296b79fcrr23-brand-logo-asia-white.png" />
</section>
<section class="info">
<h1>APAC Rumble</h1>
<div class="infomercial">
<div>
<h2>Biweekly Rumble - $1500 Each</h2>
<ul>
<li><b>APAC N:</b> 8th October / 22nd October / 5th November 2023</li>
<li><b>APAC S:</b> 7th October / 21st October / 4th November 2023</li>
</ul>
</div>
<div>
<h2>Regional Rumble - $15,500</h2>
<ul>
<li><b>Day 1:</b> 19th November 2023</li>
<li><b>Day 2:</b> 26th November 2023</li>
</ul>
</div>
</div>
<div class="register">
<a class="btn" href="https://www.start.gg/tournament/apac-regional-rumble">Sign Up</a>
</div>
</section>
<section class="trailer">
<iframe src="https://www.youtube.com/embed/b53E8v2tFYw" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
<footer>
Rocket League, Psyonix, and all related marks and logos are trademarks or registered trademarks of Psyonix LLC and used under license. &copy; 2015-2023 Licensed by Psyonix LLC, All rights reserved. All other trademarks are property of their respective owners.
</footer>
</div>
</template>
<script>
export default {
name: 'AsianRumble',
methods: {
goback() {
this.$router.push('/regionalrumble');
},
signup() {
alert('Signups open soon!');
}
},
}
</script>