-
Notifications
You must be signed in to change notification settings - Fork 13
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
1 parent
011e214
commit 0d8c1ef
Showing
48 changed files
with
1,769 additions
and
357 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,21 +1,27 @@ | ||
<template> | ||
<NuxtLink :to="`/`"> | ||
<div class="flex flex-row items-center gap-1 px-2.5 py-3.5"> | ||
<div class="flag-logo px-2.5"> | ||
<img src="~/assets/logos/logo.svg" loading="lazy" alt="Logo" class="flag-logo" fetchpriority="high" /> | ||
</div> | ||
<div class="text-xs"> | ||
<h2 class="text-gray-500 tracking-wide font-bold ">Vie-Publique.sn</h2> | ||
<!-- <p class="text-gray-500">Au cœur du débat public au Sénégal</p> --> | ||
<p class="text-gray-500">Sénégal transparent</p> | ||
</div> | ||
</div> | ||
</NuxtLink> | ||
<NuxtLink :to="`/`"> | ||
<div class="flex flex-row items-center gap-1 px-2.5 py-3.5"> | ||
<div class="flag-logo px-2.5"> | ||
<img | ||
src="~/assets/logos/logo.svg" | ||
loading="lazy" | ||
fetchpriority="high" | ||
alt="Logo" | ||
class="flag-logo" | ||
/> | ||
</div> | ||
<div class="text-xs"> | ||
<h2 class="font-bold tracking-wide text-gray-500">Vie-Publique.sn</h2> | ||
<!-- <p class="text-gray-500">Au cœur du débat public au Sénégal</p> --> | ||
<p class="text-gray-500">Sénégal transparent</p> | ||
</div> | ||
</div> | ||
</NuxtLink> | ||
</template> | ||
|
||
<style scoped> | ||
.flag-logo { | ||
height: auto; | ||
width: 60px; | ||
height: auto; | ||
width: 60px; | ||
} | ||
</style> | ||
</style> |
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,68 @@ | ||
<script setup lang="ts"> | ||
const props = defineProps<{ | ||
data: any; | ||
}>(); | ||
</script> | ||
|
||
<template> | ||
<div class="mx-auto max-w-4xl bg-white p-4 text-sm"> | ||
<h1 class="mb-2 text-center text-xl font-bold"> | ||
Tendances des finances publiques | ||
</h1> | ||
|
||
<div class=""> | ||
<div class="bg-beige-100 mb-2 p-2 text-center"> | ||
<span class="font-bold">Évolution Taux de croissance du PIB</span> | ||
</div> | ||
<div> | ||
<BudgetTendanceGrowthRateChart :growth-rates="data.growthRates" /> | ||
</div> | ||
</div> | ||
|
||
<div class="my-4"> | ||
<div class="bg-beige-100 mb-2 p-2 text-center"> | ||
<span class="font-bold">Évolution Déficit budgétaire</span> | ||
</div> | ||
<div> | ||
<BudgetTendanceDebtCompositionChart /> | ||
</div> | ||
</div> | ||
|
||
<div class="my-4"> | ||
<div class="bg-beige-100 mb-2 p-2 text-center"> | ||
<span class="font-bold">Évolution Budget global</span> | ||
</div> | ||
<div class="text-center text-sm text-gray-500"> | ||
🚧 En cours d'élaboration | ||
</div> | ||
</div> | ||
|
||
<div class="my-4"> | ||
<div class="bg-beige-100 mb-2 p-2 text-center"> | ||
<span class="font-bold">Évolution Dette Publique</span> | ||
</div> | ||
<div class="text-center text-sm text-gray-500"> | ||
🚧 En cours d'élaboration | ||
</div> | ||
</div> | ||
|
||
<div class="my-4"> | ||
<div class="bg-beige-100 mb-2 p-2 text-center"> | ||
<span class="font-bold">Évolution Recettes fiscales</span> | ||
</div> | ||
<div class="text-center text-sm text-gray-500"> | ||
🚧 En cours d'élaboration | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.bg-beige-300 { | ||
background-color: #d7ccc8; | ||
} | ||
.bg-beige-100 { | ||
background-color: #efebe9; | ||
} | ||
</style> |
Oops, something went wrong.