1. Components
  2. Footer

Components

Footer

Shows a footer with your logo and various links at the bottom of your page.

Basic Usage

Add your logo and footer items to the Footer.svelte component.

TIP

If you prefer a different type of styled Footer, the boilerplate comes with a Footer_Style2.svelte component.

To import the component, use:

/src/routes/(marketing)/+layout.svelte
        <script>
  import "../../app.css"
  import NavBar from "$lib/components/NavBar.svelte"
  import Footer from "$lib/components/Footer.svelte";
</script>



<NavBar />
<slot />
<Footer />

      

Previous <- Toast