Files
manus_ai_clone/templates/base.html
T
2025-11-05 01:03:10 +01:00

74 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}Manus AI Clone{% endblock %}</title>
<!-- Favicon -->
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🤖</text></svg>"
/>
<!-- CSS -->
<link
rel="stylesheet"
href="{{ url_for('static', path='/css/style.css') }}"
/>
{% block extra_css %}{% endblock %}
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-brand">
<span class="nav-icon">🤖</span>
<span class="nav-title">Manus AI Clone</span>
</div>
<div class="nav-links">
<a href="/" class="nav-link">Home</a>
<a href="/health" class="nav-link" target="_blank"
>Health</a
>
<a
href="https://github.com"
class="nav-link"
target="_blank"
>GitHub</a
>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="main-content">{% block content %}{% endblock %}</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<p>Built with ❤️ using LangChain, Playwright, and FastAPI</p>
<p class="footer-links">
<a href="https://www.langchain.com/" target="_blank"
>LangChain</a
>
<a href="https://playwright.dev/" target="_blank"
>Playwright</a
>
<a href="https://fastapi.tiangolo.com/" target="_blank"
>FastAPI</a
>
</p>
</div>
</footer>
<!-- JavaScript -->
<script src="{{ url_for('static', path='/js/main.js') }}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>