Skip to content
Open
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
114 changes: 57 additions & 57 deletions src/editor-sidebar/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import {
__experimentalVStack as VStack,
// eslint-disable-next-line @wordpress/no-unsafe-wp-apis
__experimentalText as Text,
// eslint-disable-next-line @wordpress/no-unsafe-wp-apis
__experimentalDivider as Divider,
PanelBody,
Card,
CardBody,
ExternalLink,
} from '@wordpress/components';

Expand All @@ -20,68 +19,69 @@ import ScreenHeader from './screen-header';

function AboutPlugin() {
return (
<PanelBody>
<>
<ScreenHeader
title={ __( 'About the plugin', 'create-block-theme' ) }
/>
<VStack>
<Text>
{ __(
'Create Block Theme is a tool to help you make Block Themes using the WordPress Editor. It does this by adding tools to the Editor to help you create and manage your theme.',
'create-block-theme'
) }
</Text>

<Text>
{ __(
"Themes created with Create Block Theme don't require Create Block Theme to be installed on the site where the theme is used.",
'create-block-theme'
) }
</Text>

<Divider />

<Text weight="bold">
{ __( 'Help', 'create-block-theme' ) }
</Text>

<Text>
<>
{ __( 'Have a question?', 'create-block-theme' ) }
<br />
<ExternalLink href="https://wordpress.org/support/plugin/create-block-theme/">
{ __( 'Ask in the forums.', 'create-block-theme' ) }
</ExternalLink>
</>
</Text>

<Text>
<>
{ __( 'Found a bug?', 'create-block-theme' ) }
<br />
<ExternalLink href="https://github.com/WordPress/create-block-theme/issues">
description={
<VStack>
<Text>
{ __(
'Report it on GitHub.',
'Create Block Theme is a tool to help you make Block Themes using the WordPress Editor. It does this by adding tools to the Editor to help you create and manage your theme.',
'create-block-theme'
) }
</ExternalLink>
</>
</Text>

<Text>
<>
{ __( 'Want to contribute?', 'create-block-theme' ) }
<br />
<ExternalLink href="https://github.com/WordPress/create-block-theme">
</Text>
<Text>
{ __(
"Themes created with Create Block Theme don't require Create Block Theme to be installed on the site where the theme is used.",
'create-block-theme'
) }
</Text>
</VStack>
}
/>
<Card size="small" isBorderless>
<CardBody>
<VStack>
<Text weight="bold">
{ __( 'Help', 'create-block-theme' ) }
</Text>
<Text>
{ __( 'Have a question?', 'create-block-theme' ) }
<br />
<ExternalLink href="https://wordpress.org/support/plugin/create-block-theme/">
{ __(
'Ask in the forums.',
'create-block-theme'
) }
</ExternalLink>
</Text>
<Text>
{ __( 'Found a bug?', 'create-block-theme' ) }
<br />
<ExternalLink href="https://github.com/WordPress/create-block-theme/issues">
{ __(
'Report it on GitHub.',
'create-block-theme'
) }
</ExternalLink>
</Text>
<Text>
{ __(
'Check out the project on GitHub.',
'Want to contribute?',
'create-block-theme'
) }
</ExternalLink>
</>
</Text>
</VStack>
</PanelBody>
<br />
<ExternalLink href="https://github.com/WordPress/create-block-theme">
{ __(
'Check out the project on GitHub.',
'create-block-theme'
) }
</ExternalLink>
</Text>
</VStack>
</CardBody>
</Card>
</>
);
}

Expand Down
Loading
Loading