mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-13 02:17:30 +00:00
feat: add author details in about page
This commit is contained in:
parent
25311a07bd
commit
1f3f917f7e
@ -31,7 +31,7 @@
|
|||||||
const drawerStore = getDrawerStore();
|
const drawerStore = getDrawerStore();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<main class="p-2 md:p-4 flex flex-col">
|
<main class="p-2 md:p-4 flex flex-col min-h-[90vh]">
|
||||||
<Drawer>
|
<Drawer>
|
||||||
{#if $drawerStore.id === 'navdrawer'}
|
{#if $drawerStore.id === 'navdrawer'}
|
||||||
<NavDrawer />
|
<NavDrawer />
|
||||||
@ -59,6 +59,7 @@
|
|||||||
<a href="https://opencollective.org/spotube">
|
<a href="https://opencollective.org/spotube">
|
||||||
<img
|
<img
|
||||||
src="https://avatars0.githubusercontent.com/u/13403593?v=4"
|
src="https://avatars0.githubusercontent.com/u/13403593?v=4"
|
||||||
|
alt="OpenCollective"
|
||||||
height="20"
|
height="20"
|
||||||
width="20"
|
width="20"
|
||||||
class="inline mr-1"
|
class="inline mr-1"
|
||||||
|
|||||||
@ -56,7 +56,7 @@
|
|||||||
<div
|
<div
|
||||||
class="flex flex-col items-center gap-2 overflow-ellipsis w-40 btn variant-ghost-secondary rounded-lg"
|
class="flex flex-col items-center gap-2 overflow-ellipsis w-40 btn variant-ghost-secondary rounded-lg"
|
||||||
>
|
>
|
||||||
<Avatar src={member.image} alt={member.name} title={member.name} class="w-12 h-12" />
|
<Avatar src={member.image} initials={member.name} class="w-12 h-12" />
|
||||||
<p>{member.name}</p>
|
<p>{member.name}</p>
|
||||||
<p class="capitalize text-sm underline decoration-dotted">
|
<p class="capitalize text-sm underline decoration-dotted">
|
||||||
({member.role.toLowerCase()})
|
({member.role.toLowerCase()})
|
||||||
|
|||||||
@ -0,0 +1,22 @@
|
|||||||
|
<section class="p-4 md:p-16">
|
||||||
|
<h2 class="h2">About</h2>
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
|
||||||
|
<h4 class="h4">Author & Developer</h4>
|
||||||
|
<br />
|
||||||
|
<a
|
||||||
|
href="https://github.com/KRTirtho"
|
||||||
|
target="_blank"
|
||||||
|
class="btn variant-ghost-tertiary max-w-44 flex flex-col items-center p-4 rounded-2xl"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
alt="Author of Spotube"
|
||||||
|
src="https://github.com/KRTirtho.png"
|
||||||
|
class="h-auto w-40 rounded-full"
|
||||||
|
/>
|
||||||
|
<br />
|
||||||
|
<h5>Kingkor Roy Tirtho</h5>
|
||||||
|
<p>Flutter developer</p>
|
||||||
|
</a>
|
||||||
|
</section>
|
||||||
Loading…
Reference in New Issue
Block a user