Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwieth committed Mar 17, 2024
2 parents 767b850 + 69978cf commit cb0a670
Show file tree
Hide file tree
Showing 30 changed files with 648 additions and 1,531 deletions.
4 changes: 3 additions & 1 deletion .fleet/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"backend.maxHeapSizeMb": 1568,
"editor.formatOnSave": true
"editor.formatOnSave": true,
"nodejs.editor.formatOnSave.stylelint.mode": "Auto",
"nodejs.editor.formatOnSave.eslint.glob": "{**/*,*}.{js,ts,jsx,tsx,vue}"
}
346 changes: 0 additions & 346 deletions src/assets/logo.svg

This file was deleted.

28 changes: 28 additions & 0 deletions src/components/elements/AboutProgressbar.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<template>
<div
class="bg-cc-red flex flex-row justify-center uppercase text-white text-xl max-md:flex-col"
>
<router-link
v-for="elem in elems"
:to="elem.routeName"
class="px-10 py-7 hover:underline"
active-class="font-bold"
>
{{ elem.display }}
</router-link>
</div>
</template>
<script lang="ts" setup>
type NavigationElement = {
routeName: string;
display: string;
};
const elems: NavigationElement[] = [
{ routeName: "/about/community", display: "Community" },
{ routeName: "/about/roadmap", display: "Roadmap" },
{ routeName: "/about/team", display: "Team" },
{ routeName: "/about/tokens", display: "CC Tokens" },
{ routeName: "/about/whitepaper", display: "Whitepaper" },
];
</script>
Loading

0 comments on commit cb0a670

Please sign in to comment.