Ce dépôt a été archivé le 2024-03-02. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nft-avatar/pages/index.vue

32 lignes
996 B
Vue

<template>
<div>
<div class="mb-8">
<div class="max-w-5xl mx-auto mt-12">
<div class="text-white text-center mb-8">
<img src="/logo.png" class="mx-auto h-24 mb-4" />
<h1 class="font-bold text-4xl">Twitter NFT Avatar</h1>
<p class="font-semibold text-xl">Give your profile picture a hexagonal shape without an NFT!</p>
<p class="text-md mt-1">
Open source on <a class="text-blue-500 hover:text-blue-600 transition duration-50" href="https://github.com/tandpfun/nft-avatar" target="_blank">GitHub</a>. Made by
<a class="text-blue-500 hover:text-blue-600 transition duration-50" href="https://twitter.com/cdngdev" target="_blank">@cdngdev</a>.
</p>
</div>
<ImageEditor />
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({});
</script>
<style>
body {
background: #15202b;
font-family: 'Roboto', sans-serif;
}
</style>