2023-08-28 01:28:05 +00:00
/ * *
* External dependencies
* /
import { __ } from '@wordpress/i18n' ;
import { createInterpolateElement } from '@wordpress/element' ;
import { Link } from '@woocommerce/components' ;
/ * *
* Internal dependencies
* /
import { SidebarNavigationScreen } from './sidebar-navigation-screen' ;
import { ADMIN_URL } from '~/utils/admin-settings' ;
export const SidebarNavigationScreenFooter = ( ) = > {
return (
< SidebarNavigationScreen
title = { __ ( 'Change your footer' , 'woocommerce' ) }
description = { createInterpolateElement (
__ (
"Select a new header from the options below. Your header includes your site's navigation and will be added to every page. You can continue customizing this via the <EditorLink>Editor</EditorLink>." ,
'woocommerce'
) ,
{
EditorLink : (
< Link
2023-09-11 09:48:23 +00:00
href = { ` ${ ADMIN_URL } site-editor.php ` }
2023-08-28 01:28:05 +00:00
type = "external"
/ >
) ,
}
) }
content = {
< >
< div className = "edit-site-sidebar-navigation-screen-patterns__group-header" > < / div >
< / >
}
/ >
) ;
} ;