forked from kodadot/nft-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:kodadot/nft-gallery into cf-upgrade…
…-pnpm
- Loading branch information
Showing
201 changed files
with
12,545 additions
and
13,775 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: 'Close stale issues' | ||
on: | ||
schedule: | ||
# run at 12:00 every day | ||
- cron: '0 0 * * SAT' | ||
|
||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
# start from the oldest issues when performing stale operations | ||
ascending: true | ||
days-before-issue-stale: 720 | ||
days-before-issue-close: 120 | ||
|
||
stale-issue-label: stale | ||
exempt-issue-labels: chief | ||
stale-issue-message: > | ||
This issue has been automatically marked as stale because it has not had | ||
activity in last 720 days. It will be closed in 120 days if no further activity occurs. Please @kodadot/internal | ||
feel free to leave a comment if you believe the issue is still relevant. | ||
Thank you for your contributions! | ||
close-issue-message: > | ||
This issue has been automatically closed because it has not had any further | ||
activity in the last 120 days. Thank you for your contributions! | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<template> | ||
<div class="max-md:gap-6 grid grid-cols-1 md:grid-cols-3"> | ||
<NeoButton | ||
variant="outlined-rounded" | ||
icon-left="arrow-left" | ||
@click="$router.back()"> | ||
{{ $t('goBack') }} | ||
</NeoButton> | ||
|
||
<div> | ||
<h1 class="text-3xl font-bold">{{ title }}</h1> | ||
|
||
<hr class="!my-8" /> | ||
|
||
<slot /> | ||
</div> | ||
<div /> | ||
</div> | ||
</template> | ||
<script lang="ts" setup> | ||
import { NeoButton } from '@kodadot1/brick' | ||
defineProps<{ title: string }>() | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<BackablePage :title="$t('createPlaceholder.welcome')"> | ||
<div class="flex flex-col gap-4"> | ||
<p class="capitalize">{{ $t('createPlaceholder.ourFocus') }}</p> | ||
|
||
<div class="flex"> | ||
<p class="capitalize"> | ||
{{ $t('createPlaceholder.intersted') }} | ||
<a | ||
href="https://form.kodadot.xyz/drop-interest" | ||
class="text-k-blue hover:text-k-blue-hover" | ||
target="_blank" | ||
rel="nofollow noopener noreferrer"> | ||
{{ $t('createPlaceholder.fillOut') }} | ||
</a> | ||
{{ $t('createPlaceholder.learnMore') }} | ||
</p> | ||
</div> | ||
|
||
<p class="capitalize"> | ||
{{ $t('createPlaceholder.codeStructure') }} | ||
|
||
<a | ||
href="https://hello.kodadot.xyz/generative/generative-art" | ||
class="text-k-blue hover:text-k-blue-hover" | ||
target="_blank" | ||
rel="nofollow noopener noreferrer"> | ||
{{ $t('documentation') }} | ||
</a> | ||
</p> | ||
</div> | ||
</BackablePage> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.