CoolFace
Apppublic

bro1908/seismicwaves-explorer

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
index.html42 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>TraceSeis Pro | Advanced Seismic Solutions</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10    <script src="https://unpkg.com/feather-icons"></script>11    <script src="components/navbar.js"></script>12    <script src="components/hero.js"></script>13    <script src="components/features.js"></script>14    <script src="components/testimonials.js"></script>15    <script src="components/cta.js"></script>16    <script src="components/footer.js"></script>17</head>18<body class="bg-gray-50">19    <custom-navbar></custom-navbar>20    <custom-hero></custom-hero>21    <custom-features></custom-features>22    <custom-testimonials></custom-testimonials>23    <custom-cta></custom-cta>24    <custom-footer></custom-footer>25    26    <script>27        feather.replace();28        tailwind.config = {29            theme: {30                extend: {31                    colors: {32                        primary: '#1E40AF',33                        secondary: '#10B981'34                    }35                }36            }37        }38    </script>39    <script src="script.js"></script>40<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>41</body>42</html>