-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
2,997 additions
and
15,586 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<template> | ||
<main> | ||
<Banner | ||
id="rl_banner" | ||
title="" | ||
src="assets/img/carousel/rl_banner.webp" | ||
/> | ||
|
||
<article id="presentation" class="content"> | ||
<h2>{{ $t("presentation") }}</h2> | ||
<p> | ||
Plongez au coeur de l'action avec le premier chapitre d'Alpes | ||
Esport. Au programme, une atmosphère électrique avec des | ||
voitures sur vitaminées. Ne manquez pas notre premier tournoi en | ||
ligne sur Rocket League, le samedi 29 juin 2024. Tournoi en | ||
format Swiss round, en 3vs3 et un cashprize de 200€ ! | ||
</p> | ||
</article> | ||
|
||
<Cashprize :data="cashprize" :title="true" /> | ||
</main> | ||
</template> | ||
|
||
<script> | ||
import Banner from "@/components/other/banner"; | ||
import rl from "@/assets/json/CEC/CEC5/rocket_league.json"; | ||
import Cashprize from "@/components/other/cashprize"; | ||
export default { | ||
name: "CEC6View", | ||
title() { | ||
return this.$t("tournaments.CEC.6.self"); | ||
}, | ||
components: { | ||
Banner, | ||
Cashprize, | ||
}, | ||
data() { | ||
return { | ||
ranking: { | ||
rl: rl, | ||
}, | ||
cashprize: [ | ||
{ | ||
name: "Rocket League", | ||
image: "Rocket_League.webp", | ||
cash: 200, | ||
regulation: | ||
"https://drive.google.com/file/d/1b3a0mT7SUCxUiFmF0a3hOIGQbq1t5zxm/view", | ||
registration: | ||
"https://play.toornament.com/fr/tournaments/7852588153972383744", | ||
}, | ||
], | ||
images: [""], | ||
}; | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "node_modules/compass-mixins/lib/compass/css3"; | ||
#rl_banner { | ||
height: 700px; | ||
&::after { | ||
@include box-shadow( | ||
inset 0 100px 150px 0 var(--bg-color), | ||
inset 0 -100px 50px -30px var(--bg-color) | ||
); | ||
} | ||
} | ||
</style> |