TestimonialsShare.tsx 599 B

1234567891011121314151617
  1. import { escapeHtml, uiUrl } from '@/config/site';
  2. import Icon from '@/components/Icon';
  3. export default function TestimonialsShare() {
  4. const twitterUrl = `https://twitter.com/intent/tweet?url=${escapeHtml(
  5. uiUrl
  6. )}&via=codecalm&text=Tabler+-+Premium+dashboard+template+with+responsive+and+high+quality+UI`;
  7. return <>
  8. <div className="text-center mt-2">
  9. <a href={twitterUrl} className="btn btn-lg" target="_blank" rel="noopener noreferrer">
  10. <Icon name="heart" className="text-red" />
  11. Share the love with us!
  12. </a>
  13. </div>
  14. </>;
  15. }