FastHowItWorkStandard
Preview
Setup
Add this component under the home->layout level.
- name: the component name
- config
- emphasize: the top emphasize
- title: the view title
- description : describe the main functions
- list: support multiple FAQs
- index: the number to view
- title: the title
- description: the description
app.config.ts
export default defineAppConfig({ app: { home: { layout: [ { name: 'FastHowItWorkStandard', config: { emphasize: "How it works", title: "How to use it quickly", description: "3 steps to quickly open the use of Fast2build, quickly online", list : [ { index: "1", title: "Get the source code", description: "Source code includes: website, login, payment, subscription, etc" }, { index: "2", title: "Personalized configuration", description: "Refer to the instructions to configure the homepage, Google login, Stripe payment, etc" }, { index: "3", title: "Quick release online", description: "Once configured, the source code can be released to a hosting platform like Vercel to go live" } ] } } ] } }})