templates.tsx 812 B

1234567891011121314151617181920
  1. // Template data
  2. export const defaultTemplates = [
  3. {
  4. id: '1',
  5. title: '🌟 Star us on GitHub!',
  6. content:
  7. "Open the Nanobrowser repository at https://github.com/nanobrowser/nanobrowser and check if you've already starred it. If not, please support us by giving us a star!",
  8. },
  9. {
  10. id: '2',
  11. title: '🐦 Follow us on X/Twitter!',
  12. content: 'Follow us at https://x.com/nanobrowser_ai to stay updated on the latest news and features!',
  13. },
  14. {
  15. id: '3',
  16. title: '📚 Explore AI Papers',
  17. content:
  18. '- Go to https://huggingface.co/papers and click through each of the top 3 upvoted papers.\n- For each paper:\n - Record the title, URL and upvotes\n - Summarise the abstract section\n- Finally, compile together a summary of all 3 papers, ranked by upvotes',
  19. },
  20. ];