This component can be used to show off where your product is features or who’s using it.

Location: src/components/Logos.svelte

Logos.svelte

Setup

You can add logos to this component using the logos array:

Logos.svelte
<script lang="ts">
    import logo from '$lib/images/logo.webp'
    ...
    const logos = [
        { image: logo, href: 'https://logo.com', alt: 'logo' },
            ...
    ];
    ...
</script>