feat: add AttributionTable to AttributionsView
This commit is contained in:
parent
de35e0e333
commit
3fd8929186
1 changed files with 24 additions and 4 deletions
|
@ -1,15 +1,35 @@
|
|||
<script setup lang="ts">
|
||||
import TextBlock from "@/components/TextBlock.vue";
|
||||
import AttributionTable from "@/components/AttributionTable.vue";
|
||||
|
||||
import ViktorRefAlpha from "@/assets/viktor-ref-SFW-alpha.png?w=400&webp&quality=100&imagetools";
|
||||
import ViktorFront from "@/assets/viktor-front-SFW-alpha.png?w=400&webp&quality=100&imagetools";
|
||||
|
||||
const attributions = [
|
||||
{
|
||||
artwork: ViktorRefAlpha,
|
||||
artist: "sabertoofs",
|
||||
links: {
|
||||
furaffinity: "https://www.furaffinity.net/user/sabertoofs",
|
||||
twitter: "https://twitter.com/sabertoofs",
|
||||
},
|
||||
},
|
||||
{
|
||||
artwork: ViktorFront,
|
||||
artist: "sabertoofs",
|
||||
links: {
|
||||
furaffinity: "https://www.furaffinity.net/user/sabertoofs",
|
||||
twitter: "https://twitter.com/sabertoofs",
|
||||
},
|
||||
},
|
||||
];
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<TextBlock>
|
||||
<h1>{{ $route.meta.title }}</h1>
|
||||
<h2>Artwork</h2>
|
||||
<p>
|
||||
Viktor Ref & Frontal Shot:
|
||||
<a href="https://twitter.com/sabertoofs">sabertoofs</a>
|
||||
</p>
|
||||
<AttributionTable :attributions="attributions" />
|
||||
|
||||
<h2>Icons</h2>
|
||||
<p>Navigation Icons: <a href="https://fontawesome.com">Font Awesome</a></p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue