1. Components
  2. Hero with Image

Components

Hero with Image

Shows a hero with a screenshot image of your app.

Basic Usage

Add your headlines and image to the HeroImage.svelte component

To import the component, use:

/src/routes/(marketing)/+page.svelte copy
        <script lang="ts">
    import HeroImage from "$lib/components/Hero.svelte";
</script>

<main class="min-h-screen">
  <HeroImage />
</main>