Skip to content

Commit

Permalink
chore: create analytics component
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-acampora committed Oct 11, 2023
1 parent 907b0ea commit 2bf6ef7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
Binary file added src/assets/img/athletx_banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/icons/notification-bell.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
12 changes: 12 additions & 0 deletions src/pages/analytics/Analytics.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<template>
<h1> Analytics </h1>
</template>
<script>
export default {
name: "Analytics",
data() {
return {}
}
}
</script>
<style src="./Analytics.scss" lang="scss" scoped/>
6 changes: 6 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { createRouter, createWebHashHistory } from "vue-router";

import Analytics from "@/pages/analytics/Analytics";
import Authentication from "@/pages/authentication/Authentication";
import HomePage from "@/pages/home/HomePage.vue";
import PageNotFound from "@/pages/notFound/PageNotFound.vue";
Expand Down Expand Up @@ -47,6 +48,11 @@ const routes = [
name: 'Goals',
component: Goal
},
{
path: '/analytics',
name: 'Analytics',
component: Analytics
},
]
},

Expand Down

0 comments on commit 2bf6ef7

Please sign in to comment.