Skip to content

Commit 71440e9

Browse files
jalyn-leesamipe
authored andcommitted
chore: cleanups
1 parent f28097e commit 71440e9

File tree

4 files changed

+9
-17
lines changed

4 files changed

+9
-17
lines changed

components.d.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,23 @@ declare module 'vue' {
1313
BannerTwo: typeof import('./src/components/banners/BannerTwo.vue')['default']
1414
BaseIcon: typeof import('./src/components/icons/BaseIcon.vue')['default']
1515
ChevronIcon: typeof import('./src/components/icons/ChevronIcon.vue')['default']
16+
ComingSoonBanner: typeof import('./src/components/banners/ComingSoonBanner.vue')['default']
1617
copy: typeof import('./src/components/cards/EventCards copy.vue')['default']
1718
EventCards: typeof import('./src/components/cards/EventCards.vue')['default']
1819
GlobeIcon: typeof import('./src/components/icons/GlobeIcon.vue')['default']
1920
GlobeRBCN: typeof import('./src/components/icons/GlobeRBCN.vue')['default']
2021
LinkIcon: typeof import('./src/components/icons/LinkIcon.vue')['default']
2122
LocaleToggler: typeof import('./src/components/blocks/LocaleToggler.vue')['default']
2223
Logo: typeof import('./src/components/blocks/Logo.vue')['default']
23-
MainBanner: typeof import('./src/components/banners/MainBanner.vue')['default']
24-
Navbar: typeof import('./src/components/Navbar.vue')['default']
24+
MainBanner: typeof import('./src/components/banners/custom/MainBanner.vue')['default']
25+
Navbar: typeof import('./src/components/navigation/Navbar.vue')['default']
2526
NavMobile: typeof import('./src/components/NavMobile.vue')['default']
2627
NewsBanner: typeof import('./src/components/NewsBanner.vue')['default']
2728
NewTabIcon: typeof import('./src/components/icons/NewTabIcon.vue')['default']
28-
PageFooter: typeof import('./src/components/PageFooter.vue')['default']
29-
PageSection: typeof import('./src/components/PageSection.vue')['default']
29+
NotFoundBanner: typeof import('./src/components/banners/NotFoundBanner.vue')['default']
30+
NotFouondBanner: typeof import('./src/components/banners/NotFouondBanner.vue')['default']
31+
PageFooter: typeof import('./src/components/footer/PageFooter.vue')['default']
32+
PageSection: typeof import('./src/components/sections/PageSection.vue')['default']
3033
PreviousTalks: typeof import('./src/components/PreviousTalks.vue')['default']
3134
RobotIcon: typeof import('./src/components/icons/RobotIcon.vue')['default']
3235
RouterLink: typeof import('vue-router')['RouterLink']

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"core-js": "^3.6.5",
1919
"crypto-js": "^4.1.1",
2020
"date-fns": "^2.28.0",
21-
"dayjs": "^1.11.13",
2221
"dompurify": "^2.4.0",
2322
"jose": "^4.12.0",
2423
"marked": "^4.1.1",
@@ -61,4 +60,4 @@
6160
"sortExportKindFirst": "type"
6261
}
6362
]
64-
}
63+
}

src/App.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,5 @@ export default {
3434
document.documentElement.lang = this.$i18n.locale
3535
}
3636
},
37-
methods: {
38-
scrollTo(id) {
39-
const el = document.getElementById(id)
40-
if (el) el.scrollIntoView({ behavior: 'smooth' })
41-
}
42-
}
4337
}
4438
</script>

src/main.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ const i18n = createI18n({
1717
warnHtmlInMessage: 'off'
1818
})
1919

20-
const app = createApp(App)
21-
22-
app.use(store)
23-
app.use(i18n)
24-
app.use(vuetify)
20+
const app = createApp(App).use(store).use(i18n).use(vuetify)
2521

2622
getEntries()
2723
.then((res: unknown) => {

0 commit comments

Comments
 (0)