File size: 3,021 Bytes
f6ba329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI Assistant Library - Placeholder</title>
    <link rel="stylesheet" href="styles.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Monoton&family=Orbitron:wght@400;700&family=Pacifico&family=Press+Start+2P&display=swap" rel="stylesheet">
    <style>
        .placeholder-content {
            max-width: 800px;
            margin: 50px auto;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--accent-color);
            text-align: center;
        }
        
        .placeholder-content h1 {
            font-family: 'Monoton', cursive;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .placeholder-content p {
            margin-bottom: 20px;
        }
        
        .placeholder-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            transition: background-color 0.3s, transform 0.3s;
            display: inline-block;
            margin-top: 20px;
        }
        
        .placeholder-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
    </style>
</head>
<body>
    <div class="banner">
        <img src="banner.webp" alt="Banner Image">
        <div class="banner-overlay">
            <h1>AI Assistant Library</h1>
            <p>A collection of AI assistant configurations by Daniel Rosehill</p>
        </div>
    </div>

    <div class="placeholder-content">
        <h1>Website Under Construction</h1>
        <p>The AI Assistant Library is currently being built. Please run the build script to generate the configuration files.</p>
        <p>Follow these steps to build the website:</p>
        <ol style="text-align: left; display: inline-block;">
            <li>Make sure Node.js is installed on your system</li>
            <li>Run the build script: <code>node build.js</code> or <code>./build-all.sh</code></li>
            <li>Once the build is complete, open <code>index.html</code> to view the website</li>
        </ol>
        <a href="index.html" class="placeholder-button">Go to Main Page</a>
    </div>

    <footer>
        <p>AI Assistant Library by <a href="https://danielrosehill.com" target="_blank">Daniel Rosehill</a> | 2024-2025</p>
        <p><a href="https://github.com/danielrosehill/AI-Assistant-System-Prompt-Library-0325-Export" target="_blank">View on GitHub</a></p>
    </footer>
</body>
</html>