FastFooterStandard
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: { overall: { footer: { name: 'FastFooterStandard', config: { logo: "", copyright: "© Copyright 2024 fast2build", links: [ { name: "Terms of service", link: "/terms-of-service" }, { name: "Privacy Policy", link: "/privacy-policy" }, { name: "Contact Us", link: "/contact-us" } ], media: [ { name: "X", link: "https://twitter.com/ljinkai" }, { name: "Discord", link: "https://discord.gg/UgCyB4Vq" } ] } } } }})