Customization
Customize the config file
const config = {
title: "Plagiarism Registry DAO", // Project title
description: "Fighting plagiarism with a searchable, creator-owned world wide registry. Get rewarded for your work.", // Project description
companyName: "Koii Network Creator Studio",
fundGoal: 1000, // Your funding goal in "eth"
images: [ // Images to be placed in the top slider
{ src: "https://picsum.photos/700" },
{ src: "https://picsum.photos/701" },
{ src: "https://picsum.photos/702" },
{ src: "https://picsum.photos/703" },
{ src: "https://picsum.photos/704" },
{ src: "https://picsum.photos/705" }
],
socials: { // Your social network links
website: "https://koii.network",
twitter: "https://twitter.com/KoiiNetwork",
discord: "https://discord.com/invite/koii",
facebook: null,
github: "https://github.com/koii-network"
},
paymentType: "eth", // Payment type (Currency) for now, we only support "eth" (ethereum)
fundAddress: "0x0123456789", // Your ethereum funding address that people will deposit to.
about: ( // A brief description about the project as html.
<div>
<p>
About us
</p>
</div>
),
faqs: [ // FAQs content
{ question: "Question 1", answer: "Answer 1" },
{ question: "Question 2", answer: "Answer 2" },
{ question: "Question 3", answer: "Answer 3" }
]
};
export default config;useFunding
Last updated