import { __ } from '@wordpress/i18n'; import React from 'react'; import UsefulPlugins from '../../components/UsefulPlugins'; import facebook from '../../images/facebook.webp'; import twitter from '../../images/x.webp'; import youtube from '../../images/youtube.webp'; import { localized } from '../../utils/global'; const Help: React.FC = () => { return ( <>

{__('Need Some Help?', 'colormag')}

{__( 'Please check out basic documentation for detailed information on how to use ' + localized.themeName + '.', 'colormag', )}

{__('View Now', 'colormag')}

{__('Support', 'colormag')}

{__( 'We would be happy to guide you through any issues and queries you have regarding ' + localized.themeName + '!', 'colormag', )}

{__('Contact Support', 'colormag')}

{__('Join Our Community', 'colormag')}

Facebook

{__('Facebook Community', 'colormag')}

{__( 'Join our Facebook community to get help, share your experience, and connect with other ' + localized.themeName + ' users.', 'colormag', )}

{__('Join us on Facebook', 'colormag')}
x-twitter

{__('X Community', 'colormag')}

{__( 'Follow us on Twitter and stay in the loop for the latest news and updates on our products!', 'colormag', )}

{__('Join us on Twitter', 'colormag')}
Youtube

{__('Youtube Community', 'colormag')}

{__( 'Visit our YouTube channel for videos about tutorials, updates, and news on our products!', 'colormag', )}

{__('Visit us on YouTube', 'colormag')}

{__('Leave us a Review', 'colormag')}

{__('Based on 1430+ Reviews', 'colormag')}

{__( 'What do you think of our theme? Was it a good experience and did it match your expectations? Let us know so we can improve!', 'colormag', )}

{__('Submit a Review', 'colormag')}

{__('Feature Request', 'colormag')}

{__( 'Please take a moment to suggest any features that could enhance our product.', 'colormag', )}

{__('Request a Feature', 'colormag')}

{__('Useful Plugins', 'colormag')}

); }; export default Help;