Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +14 -0
index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>LangChain Marketing Agent</title>
|
| 5 |
+
</head>
|
| 6 |
+
<body>
|
| 7 |
+
<h1>Welcome to Marketing Agent</h1>
|
| 8 |
+
<p>Application is loading...</p>
|
| 9 |
+
<script>
|
| 10 |
+
// Redirect to the actual app
|
| 11 |
+
window.location.href = '/app';
|
| 12 |
+
</script>
|
| 13 |
+
</body>
|
| 14 |
+
</html>
|