-
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
13 changed files
with
1,570 additions
and
1,725 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,65 @@ | ||
<template> | ||
<main> | ||
<Banner | ||
id="rl_banner" | ||
title="" | ||
src="assets/img/carousel/lol_banner.webp" | ||
/> | ||
|
||
<article id="presentation" class="content"> | ||
<h2>{{ $t("presentation") }}</h2> | ||
<p> | ||
{{ $t("tournaments.Alpine_Rivals.3.presentation") }} | ||
</p> | ||
</article> | ||
|
||
<Cashprize :data="cashprize" :title="true" /> | ||
</main> | ||
</template> | ||
|
||
<script> | ||
import Banner from "@/components/other/banner"; | ||
import Cashprize from "@/components/other/cashprize"; | ||
export default { | ||
name: "AlpineRivals3View", | ||
title() { | ||
return this.$t("tournaments.Alpine_Rivals.3.self"); | ||
}, | ||
components: { | ||
Banner, | ||
Cashprize, | ||
}, | ||
data() { | ||
return { | ||
cashprize: [ | ||
{ | ||
name: "League Of Legends", | ||
image: "League_of_Legends.webp", | ||
cash: 300, | ||
regulation: | ||
"https://drive.google.com/file/d/1-trZDJ5B71FEh20Q0QNnw9dVhbl5VZ38/view", | ||
registration: | ||
"https://play.toornament.com/fr/tournaments/8261200481331421184/", | ||
}, | ||
], | ||
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> |