Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 37 additions & 37 deletions src/lib/components/LogoList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,76 +13,76 @@

const logos = [
{
src: '/images/logos/trusted-by/apple.svg',
alt: 'Apple',
width: 42,
height: 48
src: '/images/logos/trusted-by/times-of-india.svg',
alt: 'The Times of India',
width: 123,
height: 45
},
{
src: '/images/logos/trusted-by/oracle.svg',
alt: 'ORACLE',
width: 136,
height: 17
src: '/images/logos/trusted-by/devkind.svg',
alt: 'DevKind',
width: 91,
height: 27
},
{
src: '/images/logos/trusted-by/tiktok.svg',
alt: 'TikTok',
width: 133,
height: 32
src: '/images/logos/trusted-by/first-media.svg',
alt: 'First Media',
width: 139,
height: 37
},
{
src: '/images/logos/trusted-by/intel.svg',
alt: 'intel',
width: 76,
height: 30
src: '/images/logos/trusted-by/acer.svg',
alt: 'Acer',
width: 90,
height: 22
},
{
src: '/images/logos/trusted-by/ibm.svg',
alt: 'IBM',
width: 74,
height: 30
width: 63,
height: 26
},
{
src: '/images/logos/trusted-by/american-airlines.svg',
alt: 'American Airlines',
width: 147,
height: 24
width: 125,
height: 20
},
{
src: '/images/logos/trusted-by/deloitte.svg',
alt: 'Deloitte.',
width: 103,
height: 20
src: '/images/logos/trusted-by/langx.svg',
alt: 'LangX',
width: 114,
height: 25
},
{
src: '/images/logos/trusted-by/gm.svg',
alt: 'GM',
width: 48,
height: 48
width: 41,
height: 41
},
{
src: '/images/logos/trusted-by/ey.svg',
alt: 'EY',
width: 46,
height: 48
width: 39,
height: 41
},
{
src: '/images/logos/trusted-by/nestle.svg',
alt: 'Nestle',
width: 119,
height: 34
src: '/images/logos/trusted-by/k-collect.svg',
alt: 'K-collect',
width: 108,
height: 30
},
{
src: '/images/logos/trusted-by/bosch.svg',
alt: 'BOSCH',
width: 110,
height: 37
width: 94,
height: 31
},
{
src: '/images/logos/trusted-by/decathlon.svg',
alt: 'DECATHLON',
width: 127,
height: 32
width: 108,
height: 27
}
];
</script>
Expand All @@ -92,7 +92,7 @@
<h2 class="font-aeonik-pro text-greyscale-100 text-label mx-auto max-w-md text-center">
{title}
</h2>
<ul class="grid grid-cols-3 gap-10 pt-10 text-center md:grid-cols-6">
<ul class="grid grid-cols-3 gap-12 pt-10 text-center md:grid-cols-6 md:gap-14 lg:gap-16">
{#each logos as { src, alt, width, height }}
<li class="grid place-content-center">
<img {src} {alt} {width} {height} />
Expand Down
83 changes: 43 additions & 40 deletions src/routes/(marketing)/(components)/logo-list.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,92 +7,95 @@
class?: string;
};

const { title = 'Loved by startups and world leaders', class: className }: Props = $props();
const { title = 'Loved by hackers, startups and enterprises alike', class: className }: Props =
$props();

const logos = [
{
src: '/images/logos/trusted-by/apple.svg',
alt: 'Apple',
width: 42,
height: 48
src: '/images/logos/trusted-by/times-of-india.svg',
alt: 'The Times of India',
width: 123,
height: 45
},
{
src: '/images/logos/trusted-by/oracle.svg',
alt: 'ORACLE',
width: 136,
height: 17
src: '/images/logos/trusted-by/devkind.svg',
alt: 'DevKind',
width: 91,
height: 27
},
{
src: '/images/logos/trusted-by/tiktok.svg',
alt: 'TikTok',
width: 133,
height: 32
src: '/images/logos/trusted-by/first-media.svg',
alt: 'First Media',
width: 139,
height: 37
},
{
src: '/images/logos/trusted-by/intel.svg',
alt: 'intel',
width: 76,
height: 30
src: '/images/logos/trusted-by/acer.svg',
alt: 'Acer',
width: 90,
height: 22
},
{
src: '/images/logos/trusted-by/ibm.svg',
alt: 'IBM',
width: 74,
height: 30
width: 63,
height: 26
},
{
src: '/images/logos/trusted-by/american-airlines.svg',
alt: 'American Airlines',
width: 147,
height: 24
width: 125,
height: 20
},
{
src: '/images/logos/trusted-by/deloitte.svg',
alt: 'Deloitte.',
width: 103,
height: 20
src: '/images/logos/trusted-by/langx.svg',
alt: 'LangX',
width: 114,
height: 25
},
{
src: '/images/logos/trusted-by/gm.svg',
alt: 'GM',
width: 48,
height: 48
width: 41,
height: 41
},
{
src: '/images/logos/trusted-by/ey.svg',
alt: 'EY',
width: 46,
height: 48
width: 39,
height: 41
},
{
src: '/images/logos/trusted-by/nestle.svg',
alt: 'Nestle',
width: 150,
height: 34
src: '/images/logos/trusted-by/k-collect.svg',
alt: 'K-collect',
width: 108,
height: 30
},
{
src: '/images/logos/trusted-by/bosch.svg',
alt: 'BOSCH',
width: 110,
height: 37
width: 94,
height: 31
},
{
src: '/images/logos/trusted-by/decathlon.svg',
alt: 'DECATHLON',
width: 127,
height: 32
width: 108,
height: 27
}
];
</script>

<div class={cn('py-12', className)}>
<div class="mx-auto max-w-6xl px-4 md:px-8">
<h2
class="font-aeonik-pro text-greyscale-100 text-description mx-auto max-w-[312px] text-center text-pretty"
class="font-aeonik-pro text-greyscale-100 text-description text-center text-pretty md:whitespace-nowrap"
>
{title}
</h2>
<div class="relative grid grid-cols-3 gap-6 py-10 md:grid-cols-4 md:gap-8 lg:grid-cols-6">
<div
class="relative grid grid-cols-3 gap-8 py-10 md:grid-cols-4 md:gap-10 lg:grid-cols-6 lg:gap-12"
>
{#each logos as { src, alt, width, height } (src)}
<div class="flex items-center justify-center">
<img
Expand All @@ -101,7 +104,7 @@
{alt}
{width}
{height}
class="max-w-[80px] md:max-w-none"
class="max-w-[68px] md:max-w-none"
/>
</div>
{/each}
Expand Down
5 changes: 4 additions & 1 deletion src/routes/(marketing)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
subtitle="Appwrite is an open-source, all-in-one development platform. Use built-in backend infrastructure and web hosting, all from a single place."
/>
<Platforms headline="Designed for the tools you work with" />
<LogoList class="border-smooth border-b" title="Loved by startups and world leaders" />
<LogoList
class="border-smooth border-b"
title="Loved by hackers, startups and enterprises alike"
/>
<Bento />
<Pullquote
name="Phil McCluskey"
Expand Down
6 changes: 6 additions & 0 deletions static/images/logos/trusted-by/acer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion static/images/logos/trusted-by/apple.svg

This file was deleted.

Loading
Loading