-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai.html
More file actions
117 lines (115 loc) · 3.77 KB
/
ai.html
File metadata and controls
117 lines (115 loc) · 3.77 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
112
113
114
115
116
117
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="ai.css" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<meta
charset="utf-8"
name="viewport"
content="width=device-width, initial-scale=1"
/>
<title>Marcus Shaffer: MarcusGPT</title>
</head>
<body>
<div class="container">
<div>
<nav class="navbar">
<ul class="nav-links">
<li>
<a href="index.html" class="value-header-text">Main Portfolio</a>
</li>
<li>
<a href="game.html" class="value-header-text">8-Bit Portfolio</a>
</li>
<li><a href="ai.html" class="value-header-text">MarcusGPT</a></li>
</ul>
</nav>
</div>
<div class="center-header" id="center-header">
<div class="header">
<h3 class="header-text">Welcome to MarcusGPT</h3>
<p class="overview-text">
I am like ChatGPT, but I only know about Marcus. Ask me anything
from professional experience, hobbies, and pickleball!
</p>
<div class="help-section">
<button id="question-help-btn" class="help-btn">
💡 What should I ask?
</button>
<div id="question-help-modal" class="help-modal hidden">
<div class="help-content">
<h4>Questions that work best</h4>
<ul>
<li>Where did Marcus Shaffer go to college?</li>
<li>Which programming languages is Marcus proficient in?</li>
<li>Which tools does Marcus use for test development?</li>
</ul>
<h4>Questions that may not work yet</h4>
<ul>
<li>Tell me everything about Marcus?</li>
<li>What should I do with my career?</li>
</ul>
<button id="close-help">Got it</button>
</div>
</div>
</div>
</div>
<form class="floating-form">
<div class="form-box">
<textarea
placeholder="Ask me anything about Marcus..."
id="floating-chat-input"
class="chat-input"
maxlength="150"
autofocus
></textarea>
</div>
</form>
</div>
<div class="page">
<div class="chat-wrapper">
<main class="chat-app">
<div class="chat-container" id="chat-container"></div>
</main>
</div>
</div>
<div class="bottom-section">
<div class="bottom-form">
<div class="bottom-form-box" id="bottom-form-box">
<textarea
placeholder="Ask me anything about Marcus..."
id="static-chat-input"
class="chat-input"
maxlength="150"
autofocus
></textarea>
<button
class="arrow-btn"
aria-label="Next"
type="button"
id="static-chat-btn"
>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
<path
d="M5 12h14M13 6l6 6-6 6"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
</div>
</div>
<div class="disclaimer">
<p>
MarcusGPT can make mistakes. Make sure to check home page for
relevant information.
</p>
</div>
<footer><p class="footer-text">Designed by Marcus Shaffer</p></footer>
</div>
</div>
<script src="/ai.js"></script>
</body>
</html>