Skip to content

Commit

Permalink
chore: 🧹 adds link to 'lose customers' text on landing page, fixes ty…
Browse files Browse the repository at this point in the history
…po on FF blog (#14)

## Why?

Adds link to performance blog from 'lose customers' text on landing
page.

## How?

- Done A (replace with a breakdown of the steps)
- Done B
- Done C

## Tickets?

- [Ticket 1](the-ticket-url-here)
- [Ticket 2](the-ticket-url-here)
- [Ticket 3](the-ticket-url-here)

## Contribution checklist?

- [ ] The commit messages are detailed
- [ ] The `build` command runs locally
- [ ] Assets or static content are linked and stored in the project
- [ ] Document filename is named after the slug
- [ ] You've reviewed spelling using a grammar checker
- [ ] For documentation, guides or references, you've tested the
commands and steps
- [ ] You've done enough research before writing

## Security checklist?

- [ ] Sensitive data has been identified and is being protected properly
- [ ] Injection has been prevented (parameterized queries, no eval or
system calls)
- [ ] The Components are escaping output (to prevent XSS)

## References?

Optionally, provide references such as links

## Preview?

Optionally, provide the preview url here

---------

Co-authored-by: Kanishk Khurana <[email protected]>
  • Loading branch information
nlc616 and KanishkKhurana authored Jun 10, 2024
1 parent 10ac9a1 commit 5fa2d79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/components/ImpressUsers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import PageSection from '@components/PageSection';
import GridLayout from '@components/GridLayout';
import Button from '@components/Button';
import TextGlowHoverEffect from '@components/TextGlowHoverEffect';
import { GrShare } from 'react-icons/gr';

import type { RoundedType } from '@components/PageSection';
import Link, { Target } from '@components/Link';
Expand Down Expand Up @@ -101,7 +102,14 @@ const ImpressUsers: React.FC<Props & OptionalProps> = ({ rounded }) => {
</h1>

<p className="typo-m text-center text-gray-dark-11 lg:typo-l lg:text-start">
Your app needs to load fast, otherwise you'll lose customers.
Your app needs to load fast, otherwise you'll{' '}
<a
href="https://fleek.xyz/blog/learn/importance-of-latency-modern-web/"
className=" text-yellow"
>
lose customers <GrShare className="mb-5 inline " />
</a>
. <br />
Fleek runs your app in 100+ edge locations to ensure fast loading
worldwide.
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,4 @@ Here is also a full list of links and resources to help you get started:

- [Fleek Functions Tutorial](/docs/cli/functions)
- [Fleek Functions Platform Docs](/docs/platform/fleek-functions)
- [Fleek Function Early Performance Test](https://blog.fleek.network/post/fleek-network-testnet-phase-3-results/)
- [Fleek Functions Early Performance Test](https://blog.fleek.network/post/fleek-network-testnet-phase-3-results/)

0 comments on commit 5fa2d79

Please sign in to comment.