Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/275 create about page #280

Merged
merged 11 commits into from
Mar 17, 2024
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: "Card Creator" },
];
</script>
Loading
Loading