diff --git a/src/lib/components/LogoList.svelte b/src/lib/components/LogoList.svelte
index 688bec2f6f..5e79844507 100644
--- a/src/lib/components/LogoList.svelte
+++ b/src/lib/components/LogoList.svelte
@@ -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
}
];
@@ -92,7 +92,7 @@
{title}
-
+
{#each logos as { src, alt, width, height }}
-
diff --git a/src/routes/(marketing)/(components)/logo-list.svelte b/src/routes/(marketing)/(components)/logo-list.svelte
index e8a23e171b..d32ec1c671 100644
--- a/src/routes/(marketing)/(components)/logo-list.svelte
+++ b/src/routes/(marketing)/(components)/logo-list.svelte
@@ -7,92 +7,92 @@
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
}
];
-
- {title}
-
-
+
+
+ {title}
+
+
+
{#each logos as { src, alt, width, height } (src)}
{/each}
diff --git a/src/routes/(marketing)/+page.svelte b/src/routes/(marketing)/+page.svelte
index 0b053c5da5..49fc9150f2 100644
--- a/src/routes/(marketing)/+page.svelte
+++ b/src/routes/(marketing)/+page.svelte
@@ -26,7 +26,7 @@
subtitle="Appwrite is an open-source, all-in-one development platform. Use built-in backend infrastructure and web hosting, all from a single place."
/>
-
+
+
+
diff --git a/static/images/logos/trusted-by/apple.svg b/static/images/logos/trusted-by/apple.svg
deleted file mode 100644
index 5f628cdb39..0000000000
--- a/static/images/logos/trusted-by/apple.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/images/logos/trusted-by/devkind.svg b/static/images/logos/trusted-by/devkind.svg
new file mode 100644
index 0000000000..a361ca0b3b
--- /dev/null
+++ b/static/images/logos/trusted-by/devkind.svg
@@ -0,0 +1,63 @@
+
diff --git a/static/images/logos/trusted-by/first-media.svg b/static/images/logos/trusted-by/first-media.svg
new file mode 100644
index 0000000000..f1aeb9d098
--- /dev/null
+++ b/static/images/logos/trusted-by/first-media.svg
@@ -0,0 +1,70 @@
+
diff --git a/static/images/logos/trusted-by/intel.svg b/static/images/logos/trusted-by/intel.svg
deleted file mode 100644
index 168cfec668..0000000000
--- a/static/images/logos/trusted-by/intel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/images/logos/trusted-by/k-collect.svg b/static/images/logos/trusted-by/k-collect.svg
new file mode 100644
index 0000000000..81ebdaa2b1
--- /dev/null
+++ b/static/images/logos/trusted-by/k-collect.svg
@@ -0,0 +1,40 @@
+
\ No newline at end of file
diff --git a/static/images/logos/trusted-by/langx.svg b/static/images/logos/trusted-by/langx.svg
new file mode 100644
index 0000000000..d9391e0419
--- /dev/null
+++ b/static/images/logos/trusted-by/langx.svg
@@ -0,0 +1,18 @@
+
diff --git a/static/images/logos/trusted-by/tiktok.svg b/static/images/logos/trusted-by/tiktok.svg
deleted file mode 100644
index 9dc374ed10..0000000000
--- a/static/images/logos/trusted-by/tiktok.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/static/images/logos/trusted-by/times-of-india.svg b/static/images/logos/trusted-by/times-of-india.svg
new file mode 100644
index 0000000000..413addb127
--- /dev/null
+++ b/static/images/logos/trusted-by/times-of-india.svg
@@ -0,0 +1,94 @@
+
\ No newline at end of file