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
1 change: 0 additions & 1 deletion src/routes/(marketing)/(components)/logo-list.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script lang="ts">
import { browser } from '$app/environment';
import { cn } from '$lib/utils/cn';

type Props = {
Expand Down
60 changes: 34 additions & 26 deletions src/routes/(marketing)/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts">
import { browser } from '$app/environment';
import Bento from './(components)/bento/bento.svelte';
import CaseStudies from './(components)/case-studies.svelte';
import Features from './(components)/features.svelte';
Expand All @@ -24,33 +25,40 @@
<Hero />
<Platforms headline="Designed for the tools you work with" />
<LogoList class="border-smooth border-b" title="Trusted by developer teams worldwide" />
<Bento />
<Pullquote
name="Phil McCluskey"
title="App Manager, Majik Kids"
avatar="/images/testimonials/phil.jpg"
>
<span class="text-secondary">Just like a Swiss Army Knife</span> you can choose and use the tools
that you need with Appwrite.</Pullquote
>
<Ai />
<CaseStudies />
<Features theme="light" />
<div class="light bg-[#EDEDF0]">
<Map theme="light" />
<Scale
testimonial={{
name: 'Ryan O’Connor',
title: 'Founder',
company: 'K-Collect',
image: '/images/testimonials/ryan-oconner-testimonial.png'
}}

{#if browser}
<!-- Below the fold — client-side only to avoid SSR CPU cost -->
<Bento />
<Pullquote
name="Phil McCluskey"
title="App Manager, Majik Kids"
avatar="/images/testimonials/phil.jpg"
>
<span class="text-secondary">Just like a Swiss Army Knife</span> you can choose and use the
tools that you need with Appwrite.</Pullquote
>
The switch to using Appwrite brought
<span class="text-primary">infinite value that I'm still discovering today.</span>
</Scale>
</div>
<Pricing />
<Ai />
<CaseStudies />
<Features theme="light" />
<div class="light bg-[#EDEDF0]">
<Map theme="light" />
<Scale
testimonial={{
name: 'Ryan O’Connor',
title: 'Founder',
company: 'K-Collect',
image: '/images/testimonials/ryan-oconner-testimonial.png'
}}
>
The switch to using Appwrite brought
<span class="text-primary">infinite value that I'm still discovering today.</span>
</Scale>
</div>
<Pricing />
{:else}
<!-- Placeholder to keep the footer below the fold on SSR -->
<div class="h-screen" aria-hidden="true"></div>
{/if}
Comment thread
greptile-apps[bot] marked this conversation as resolved.
</Main>

<div class="container">
Expand Down
Loading