{% extends "base.html" %} {% block title %}My AI Assistant{% endblock %} {% block content %} {% set me_page = 'home' %}

Hello, {{ profile.full_name or 'there' }}

{{ profile.title or 'Configure your profile to personalize this assistant' }}

{% if briefing and briefing.get('greeting') %}
πŸ“‹ Today's Briefing Full view β†’

{{ briefing.greeting }}

{% if briefing.focus %}

{{ briefing.focus }}

{% endif %} {% if briefing.meetings %}
Today's Meetings
    {% for m in briefing.meetings[:3] %}
  • {{ m.time }} {{ m.title }}
  • {% endfor %}
{% endif %}
{% else %}
πŸ“‹

No briefing generated yet for today.

{% endif %}
Quick Access
{% for icon,title,desc,href in [('πŸ‘€','Profile','Your identity & work rhythm','/me/profile'),('🏒','Customers','Who depends on your work','/me/customers'),('🎯','Objectives','Goals by horizon','/me/objectives'),('⚑','Challenges','What slows you down','/me/challenges'),('πŸ“‹',"Today's Briefing",'AI-assembled daily summary','/me/briefing/today'),('πŸ“š','Knowledge Base','URLs & notes for your AI coworker','/me/learn'),('πŸ”—','Integrations','Calendar, Slack, GitHub & more','/me/integrations')] %} {% endfor %}
{% include "includes/iqe_query_widget.html" %} {% endblock %}