-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
111 lines (95 loc) · 4.39 KB
/
Copy pathexample.html
File metadata and controls
111 lines (95 loc) · 4.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PIXIO.ai - Your Mathematical Assistant</title>
<link rel="stylesheet" type="text/css" href="css.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/11.12.0/math.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-mml-chtml.js"></script>
<!-- Include Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Include Lucide Icons -->
<script src="https://unpkg.com/lucide@latest"></script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$'], ['\\[', '\\]']],
processEscapes: true
},
options: {
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
};
</script>
</head>
<body>
<button class="sidebar-toggle" onclick="toggleSidebar()" >☰</button>
<div class="sidebar">
<div class="p-4">
<h1 class="text-xl font-bold text-blue-500">PIXIO.ai for Academics</h1>
</div>
<nav>
<a href="example.html" class="nav-item active">
<i data-lucide="home" class="w-5 h-5 mr-3"></i>
Home
</a>
<a href="index.html" class="nav-item ">
<i data-lucide="bot" class="w-5 h-5 mr-3"></i>
Pixio AI
</a>
<a href="calculator.html" class="nav-item">
<i data-lucide="calculator" class="w-5 h-5 mr-3"></i>
Calculator
</a>
<a href="writer-helper.html" class="nav-item">
<i data-lucide="pen-tool" class="w-5 h-5 mr-3"></i>
Writer Helper
</a>
<a href="study-tools.html" class="nav-item">
<i data-lucide="book-open" class="w-5 h-5 mr-3"></i>
Study Tools
</a>
<a href="#" class="nav-item">
<i data-lucide="settings" class="w-5 h-5 mr-3"></i>
Settings
</a>
</nav>
</div>
<main class="chat-container">
<!-- Home Section -->
<div id="home-section">
<h2 class="text-2xl font-bold mb-6">Welcome to PIXIO.ai</h2>
<!-- Quick Access Tools -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<div class="tool-card"><a href="search-question.html">
<i data-lucide="pi" class="w-8 h-8 text-blue-500 mb-4"></i>
<h3 class="text-lg font-semibold mb-2">Problem Solver</h3>
<p class="text-gray-400">Ask math problems</p></a>
</div>
<div class="tool-card" ><a href="calculator.html">
<i data-lucide="calculator" class="w-8 h-8 text-blue-500 mb-4"></i>
<h3 class="text-lg font-semibold mb-2">Smart Calculator</h3>
<p class="text-gray-400">Solve complex calculations with step-by-step explanations</p>
</a></div>
<div class="tool-card"><a href="writer-helper.html">
<i data-lucide="pen-tool" class="w-8 h-8 text-blue-500 mb-4"></i>
<h3 class="text-lg font-semibold mb-2">Writer Helper</h3>
<p class="text-gray-400">Get help with mathematical writing and equations</p></a>
</div>
<div class="tool-card"><a href="study-tools.html">
<i data-lucide="book-open" class="w-8 h-8 text-blue-500 mb-4"></i>
<h3 class="text-lg font-semibold mb-2">Study Tools</h3>
<p class="text-gray-400">Access comprehensive study materials and guides</p>
<i data-lucide="move-right" class="w-4 h-4 text-white-500 mb-4" ></i></a>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="solve-math.js" >
</script>
</body>
</html>