Skip to content

Commit

Permalink
Created marketplace page & added route /marketplace/
Browse files Browse the repository at this point in the history
  • Loading branch information
medvalna committed Nov 1, 2023
1 parent 65be293 commit ba3826f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/application/router/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Landing from '@/presentation/pages/Landing.vue';
import Settings from '@/presentation/pages/Settings.vue';
import NoteSettings from '@/presentation/pages/NoteSettings.vue';
import ErrorPage from '@/presentation/pages/Error.vue';
import Marketplace from '@/presentation/pages/Marketplace.vue';
import type { RouteRecordRaw } from 'vue-router';

// Default production hostname for homepage. If different, then custom hostname used
Expand Down Expand Up @@ -55,6 +56,10 @@ const routes: RouteRecordRaw[] = [
id: String(route.params.id),
}),
},
{
path: `/marketplace/`,
component: Marketplace,
},
/**
* 404 page
*/
Expand Down
16 changes: 16 additions & 0 deletions src/presentation/pages/Marketplace.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<template>
<div>
<h1>Marketplace</h1>
</div>
</template>

<script setup lang="ts">
</script>

<style setup lang = "postcss" scoped>
@import '@/presentation/styles/typography.pcss';
h1 {
@apply --text-heading-1;
}
</style>

0 comments on commit ba3826f

Please sign in to comment.