mirror of
https://github.com/AtHeartEngineer/website-v2.git
synced 2026-01-09 21:07:55 -05:00
26 lines
1018 B
TypeScript
26 lines
1018 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
const description = `
|
|
Channel 4 is a community-driven platform where users can submit and discover content. It uses state channels to incentivize user engagement. When a user likes the content you've submitted, a state channel closes and rewards are dropped into their wallet. This approach combines entertainment with the power of state channels, enabling community members to earn while they engage.
|
|
`
|
|
|
|
export const channel4: ProjectInterface = {
|
|
id: "channel-4",
|
|
projectStatus: "active",
|
|
image: "channel4.svg",
|
|
name: "Channel 4",
|
|
tldr: "Content discovery through community contributions, using state channels to reward users for popular posts.",
|
|
description,
|
|
links: {
|
|
github: "https://github.com/State-Channel-4",
|
|
website: "https://channel4.wtf/",
|
|
discord: "https://discord.gg/76UrYgVyEx",
|
|
},
|
|
tags: {
|
|
keywords: ["Scaling"],
|
|
themes: ["play"],
|
|
types: ["Application"],
|
|
builtWith: ["state channel", "smart contract"],
|
|
},
|
|
}
|