Skip to content

Commit

Permalink
feat: add gh issue for new projects
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettyong committed May 14, 2024
1 parent e528dc0 commit df4b261
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 12 deletions.
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/add_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: "Add a project to Taiko's ecosystem 🌐"
description: "Add a project to Taiko's ecosystem"
title: "Add [PROJECT_NAME] to the ecosystem page"
labels: ["area.website", "category.ecosystem"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to add your project. You can see existing examples on Taiko's ecosystem page [here](https://taiko.xyz/ecosystem)! NOTE: We can only accept ecosystem projects that have integrated with Taiko or have clear plans to do so in the future.
- type: input
id: title
attributes:
label: Title of your project
validations:
required: true
- type: input
id: description
attributes:
label: Short (1-2 sentence) description of your project
validations:
required: true
- type: input
id: link
attributes:
label: Link to your project
validations:
required: true
- type: dropdown
id: isLive
attributes:
label: Live on Testnet
description: Is your project deployed on one of Taiko's testnets?
multiple: false
options:
- "Yes (default)"
- "No"
validations:
required: true
- type: input
id: evidence
attributes:
label: If your project is live on one of Taiko's testnets, please provide evidence of that here (eg. links, screenshots). If your project is NOT live, please provide your plan for integration here.
validations:
required: true
- type: textarea
id: logo
attributes:
label: Upload a quality logo to your project
description: 512x512 or 1:1 ratio is preferred. If no image is provided we will use a placeholder image.
validations:
required: false
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Community support
url: https://discord.gg/taikoxyz
about: This issue tracker is only for feature requests and bug reports. Community support is available on Discord!
17 changes: 8 additions & 9 deletions public/locales/en/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,20 @@
},
"solutions": {
"solutions": "Our solutions",
"list": [
{
"title": "<strong>Based Booster Rollups</strong> — scale natively, compose synchronously",
"extraTitle": "scale natively, compose synchronously",
"title_short": "Based Booster Rollup",
"text": "Deploy on Ethereum and scale natively across all L2s.",
"icon": "rocket",
"iconLottie": "/img/rocket.json"
}, {
"list": [ {
"title": "<strong>Based Contestable Rollups</strong> — a modular, multi-proof design",
"extraTitle": "a modular, multi-proof design",
"title_short": "Based Contestable Rollup",
"text": "Combining the best of optimistic and ZK-rollups to maximally reduce costs and increase decentralization.",
"icon": "laptop",
"iconLottie": "/img/laptop.json"
},{
"title": "<strong>Based Booster Rollups</strong> — scale natively, compose synchronously",
"extraTitle": "scale natively, compose synchronously",
"title_short": "Based Booster Rollup",
"text": "Deploy on Ethereum and scale natively across all L2s.",
"icon": "rocket",
"iconLottie": "/img/rocket.json"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/01-home-screens/ui/gradient-fill/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const FillCircle: React.FC<IHomeAdvantage> = ({
colors.background
);

return () => instance.current?.destroy();
// return () => instance.current?.destroy();
}
});

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/01-home-screens/ui/sticky-content/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const StickyContent: React.FC<Props> = ({ children, stickyEl }) => {

return (
<div className={css.root}>
<div className={css.sticky} ref={stickyRef}>
<div className={css.pad} ref={stickyRef}>
{stickyEl}
</div>
<div className={css.children}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
top: 0;
z-index: 1;
}
.pad {
padding: 40px 0;
}

.sticky_scroll {
padding: 40px 0;
Expand Down
Binary file added src/widgets/07-ecosystem-screens/ui/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion src/widgets/07-ecosystem-screens/ui/01-hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const Hero: React.FC = () => {
text={t('joinOurEcosystem')}
component="a"
target="_blank"
href="https://github.com/taikoxyz/website/issues/new?assignees=&labels=category.enhancement%2Cstatus.needs-triage&projects=&template=add_project.yml"
href="https://github.com/taikoxyz/website-v2/issues/new?assignees=&labels=category.enhancement%2Cstatus.needs-triage&projects=&template=add_project.yml"
/>

<MediaQuery
Expand Down

0 comments on commit df4b261

Please sign in to comment.