Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>Home | Static Space</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| </head> | |
| <body> | |
| <custom-navbar></custom-navbar> | |
| <div class="container"> | |
| <div class="card"> | |
| <h1>Welcome to Your Static Space!</h1> | |
| <p>This is a modern, responsive static website hosted on Hugging Face Spaces.</p> | |
| <div class="features"> | |
| <div class="feature-card"> | |
| <h2>β‘ Fast</h2> | |
| <p>Static sites load instantly with no server-side processing.</p> | |
| </div> | |
| <div class="feature-card"> | |
| <h2>π Secure</h2> | |
| <p>No databases or dynamic code means less attack surface.</p> | |
| </div> | |
| <div class="feature-card"> | |
| <h2>π Simple</h2> | |
| <p>Just HTML, CSS, and JavaScript - no complex setup required.</p> | |
| </div> | |
| </div> | |
| <p class="cta">Explore our <a href="/about.html">About page</a> to learn more or <a href="/contact.html">contact us</a> with any questions.</p> | |
| </div> | |
| </div> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| </body> | |
| </html> | |