constants
Mon Mar 11 2024 07:09:54 GMT+0000 (Coordinated Universal Time)
Saved by @fazmi322
export const navlink = [ { href: "#about", label: "About" }, { href: "#discover", label: "Discover" }, { href: "#getStarted", label: "Get Started" }, ]; export const backers = [ { value: "$89,914", label: "of $100,000 backed", line:"true" }, { value: "5,007", label: "total backers", line:"true" }, { value: "56", label: "days left", line:false }, ]; export const feature = [ { title: "Bamboo Stand", subtitle: "Pledge $25 or more", description: "You get a Black Special Edition computer stand and a personal thank you. You’ll be added to our Backer member list. Shipping is included.", stock: 101, button: "Select Reward", disabled: false, }, { title: "Black Edition Stand", subtitle: "Pledge $75 or more", description: "You get an ergonomic stand made of natural bamboo. You've helped us launch our promotional campaign, and you’ll be added to a special Backer member list.", stock: 64, button: "Select Reward", disabled: false, }, { title: "Mahogany Special Edition", subtitle: "Pledge $200 or more", description: "You get two Special Edition Mahogany stands, a Backer T-Shirt, and a personal thank you. You’ll be added to our Backer member list. Shipping is included.", stock: 0, button: "Out of Stock", disabled: true, }, ]; export const project = [ { title: "Pledge with no reward", subtitle: "", description: "Choose to support us without a reward if you simply believe in our project. As a backer, you will be signed up to receive product updates via email.", selectedTitle: "", button1: 0, button2: "Continue", disabled: false, }, { title: "Bamboo Stand", subtitle: "Pledge $25 or more", description: "You get an ergonomic stand made of natural bamboo. You've helped us launch our promotional campaign, and you’ll be added to a special Backer member list.", stock: 101, selectedTitle: "Enter your pledge", button1: 25, button2: "Continue", disabled: false, }, { title: "Black Edition Stand", subtitle: "Pledge $75 or more", description: "You get a Black Special Edition computer stand and a personal thank you. You’ll be added to our Backer member list. Shipping is included.", stock: 64, selectedTitle: "Enter your pledge", button1: 75, button2: "Continue", disabled: false, }, { title: "Mahogany Special Edition", subtitle: "Pledge $200 or more", description: "You get two Special Edition Mahogany stands, a Backer T-Shirt, and a personal thank you. You’ll be added to our Backer member list. Shipping is included.", stock: 0, selectedTitle: "Enter your pledge", button1: 200, button2: "Continue", disabled: true, }, ];
This is index.js from constants folder
Comments