SONAX Application UI

Footer

Demos

Default

import { Footer } from 'sxa-ui'


function Demo() {
    const links = <>
        <Footer.Link>Home</Footer.Link>
        <Footer.Link>Products</Footer.Link>
        <Footer.Link>Impressum</Footer.Link>
    </>

  return (
    <Footer copyright='© Copyright SONAX Gmbh 2024. All rights reserved.' links={links}/>
  )
}

export default Demo