feat: display attribution for other types of assets in table

This commit is contained in:
Sebin Nyshkim 2023-01-19 19:05:54 +01:00
parent e2b0dd0f0a
commit 86a04fa6eb

View file

@ -30,20 +30,90 @@ const attributions = [
<h2>Artwork</h2> <h2>Artwork</h2>
<AttributionTable :attributions="attributions" /> <AttributionTable :attributions="attributions" />
<h2>Icons</h2> <h2>Other</h2>
<p>Navigation Icons: <a href="https://fontawesome.com">Font Awesome</a></p> <table>
<thead>
<h2>Fonts</h2> <tr>
<h3>Heading Font</h3> <th>Type</th>
<p> <th>Source</th>
<a href="https://github.com/MichalSahar/Secular">Secular One</a> by </tr>
<a href="https://github.com/MichalSahar">Michal Sahar</a> </thead>
</p> <tbody>
<h3>Copy Font</h3> <tr>
<p> <td>Icons</td>
<a href="https://antonkoovit.com/typefaces/arvo">Arvo</a> by <td>
<a href="https://antonkoovit.com/">Anton Koovit</a> <a
</p> href="https://fontawesome.com/license/free"
target="_blank"
rel="noopener noreferrer"
>
Font Awesome
</a>
</td>
</tr>
<tr>
<td>Heading Font</td>
<td>
<a
href="https://github.com/MichalSahar/Secular"
target="_blank"
rel="noopener noreferrer"
>
Secular One
</a>
by
<a
href="https://github.com/MichalSahar"
target="_blank"
rel="noopener noreferrer"
>
Michal Sahar
</a>
</td>
</tr>
<tr>
<td>Copy Font</td>
<td>
<a
href="https://antonkoovit.com/typefaces/arvo"
target="_blank"
rel="noopener noreferrer"
>
Arvo
</a>
by
<a
href="https://antonkoovit.com/"
target="_blank"
rel="noopener noreferrer"
>
Anton Koovit
</a>
</td>
</tr>
<tr>
<td>Background</td>
<td>
Layered Waves from
<a
href="https://haikei.app/"
target="_blank"
rel="noopener noreferrer"
>
Haikei
</a>
by
<a
href="https://zcreativelabs.com/"
target="_blank"
rel="noopener noreferrer"
>
z creative labs
</a>
</td>
</tr>
</tbody>
</table>
</section> </section>
</template> </template>