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
This commit is contained in:
Toni Babenko
2023-05-22 11:47:49 -07:00
committed by Facebook GitHub Bot
parent cb74386b13
commit d6b852d435

View File

@@ -7,13 +7,13 @@
* @format * @format
*/ */
import React from 'react'; import React from 'react';
import Layout from '@theme/Layout'; import Layout from '@theme/Layout';
import useBaseUrl from '@docusaurus/useBaseUrl'; import useBaseUrl from '@docusaurus/useBaseUrl';
import {usePluginData} from '@docusaurus/useGlobalData'; import {usePluginData} from '@docusaurus/useGlobalData';
import {FbInternalOnly, OssOnly} from 'docusaurus-plugin-internaldocs-fb/internal'; import {FbInternalOnly, OssOnly} from 'docusaurus-plugin-internaldocs-fb/internal';
export default function Index() { export default function Index() {
return ( return (
<Layout title="Extensible mobile app debugger"> <Layout title="Extensible mobile app debugger">
<div> <div>
@@ -85,10 +85,6 @@ export default function Index() {
</OssOnly> </OssOnly>
<div className="slideshow"> <div className="slideshow">
<img src={useBaseUrl('img/logs.png')} className="splashScreen" /> <img src={useBaseUrl('img/logs.png')} className="splashScreen" />
<img
src={useBaseUrl('img/layout.png')}
className="splashScreen"
/>
<img <img
src={useBaseUrl('img/network.png')} src={useBaseUrl('img/network.png')}
className="splashScreen" className="splashScreen"
@@ -193,4 +189,4 @@ export default function Index() {
</div> </div>
</Layout> </Layout>
); );
} }