From d6b852d43552b4a60a2380276a39546b90c439b3 Mon Sep 17 00:00:00 2001 From: Toni Babenko Date: Mon, 22 May 2023 11:47:49 -0700 Subject: [PATCH] Remove broken img from the main page Summary: There's a picture with a broken link in the hero section: {F999641292} I checked a list of existing static images and found one which was on this place before: https://fburl.com/code/yh73399d. But the image no longer align with others, since it has low resolution and an old version of the Flipper interface, so I decided to simply remove the broken image from the page. Reviewed By: passy Differential Revision: D46074714 fbshipit-source-id: 186b17b9b992f123fc667c701b4f49d9e3cbbb2d --- website/src/pages/index.js | 368 ++++++++++++++++++------------------- 1 file changed, 182 insertions(+), 186 deletions(-) diff --git a/website/src/pages/index.js b/website/src/pages/index.js index b7f0ccfb9..b19074437 100644 --- a/website/src/pages/index.js +++ b/website/src/pages/index.js @@ -7,190 +7,186 @@ * @format */ -import React from 'react'; -import Layout from '@theme/Layout'; -import useBaseUrl from '@docusaurus/useBaseUrl'; -import {usePluginData} from '@docusaurus/useGlobalData'; -import {FbInternalOnly, OssOnly} from 'docusaurus-plugin-internaldocs-fb/internal'; + import React from 'react'; + import Layout from '@theme/Layout'; + import useBaseUrl from '@docusaurus/useBaseUrl'; + import {usePluginData} from '@docusaurus/useGlobalData'; + import {FbInternalOnly, OssOnly} from 'docusaurus-plugin-internaldocs-fb/internal'; -export default function Index() { - return ( - -
-
-
-

Extensible mobile app debugger

-

- Flipper is a platform for debugging iOS, Android and React Native - apps. Visualize, inspect, and control your apps from a simple - desktop interface. Use Flipper as is or extend it using the plugin - API. -

- - - - - - -
- - - - -
-
-
-
-
-
- -
-
-

Tools

-

Mobile development

-

- Flipper aims to be your number one companion for mobile app - development on iOS and Android. Therefore, we provide a bunch of - useful tools including a log viewer, interactive layout inspector, - and network inspector. -

- - Learn more - -
-
-
-
-

Plugins

-

Extending Flipper

-

- Flipper is built as a platform. In addition to using the tools - already included, you can create your own plugins to visualize and - debug data from your mobile apps. Flipper takes care of sending - data back and forth, calling functions, and listening for events - on the mobile app. -

- - Learn more - -
-
- -
-
-
-
- -
-
-

Open Source

-

Contributing to Flipper

-

- Both Flipper's desktop app and native mobile SDKs are open-source - and MIT licensed. This enables you to see and understand how we - are building plugins, and of course join the community and help - improve Flipper. We are excited to see what you will build on this - platform. -

- - Explore the source on GitHub - -
-
-
- - Integrate Flipper In Your App - - - - Download Flipper - - -
-
- - ); -} + export default function Index() { + return ( + +
+
+
+

Extensible mobile app debugger

+

+ Flipper is a platform for debugging iOS, Android and React Native + apps. Visualize, inspect, and control your apps from a simple + desktop interface. Use Flipper as is or extend it using the plugin + API. +

+ + + + + + +
+ + + +
+
+
+
+
+
+ +
+
+

Tools

+

Mobile development

+

+ Flipper aims to be your number one companion for mobile app + development on iOS and Android. Therefore, we provide a bunch of + useful tools including a log viewer, interactive layout inspector, + and network inspector. +

+ + Learn more + +
+
+
+
+

Plugins

+

Extending Flipper

+

+ Flipper is built as a platform. In addition to using the tools + already included, you can create your own plugins to visualize and + debug data from your mobile apps. Flipper takes care of sending + data back and forth, calling functions, and listening for events + on the mobile app. +

+ + Learn more + +
+
+ +
+
+
+
+ +
+
+

Open Source

+

Contributing to Flipper

+

+ Both Flipper's desktop app and native mobile SDKs are open-source + and MIT licensed. This enables you to see and understand how we + are building plugins, and of course join the community and help + improve Flipper. We are excited to see what you will build on this + platform. +

+ + Explore the source on GitHub + +
+
+ +
+ + ); + }