Skip to content

Commit 9132cb6

Browse files
committed
Add LastUpdated to the contributors page
1 parent 648b3c6 commit 9132cb6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pages/contributors/index.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="page-container">
33
<Hero title="Contributors" />
4+
<LastUpdated />
45
<div class="area-chart-section">
56
<div class="chart-header">
67
<div class="divider-black"></div>
@@ -30,13 +31,15 @@
3031
</template>
3132

3233
<script>
34+
import LastUpdated from '~/components/LastUpdated.vue'
3335
export default {
3436
name: 'ContributorsPage',
3537
components: {
3638
Hero: () => import('~/components/Hero.vue'),
3739
AreaChart: () => import('~/components/AreaChart.vue'),
3840
BarChart: () => import('~/components/BarChart.vue'),
3941
TopDevelopers: () => import('~/components/TopDevelopers.vue'),
42+
LastUpdated,
4043
},
4144
data() {
4245
return {

0 commit comments

Comments
 (0)