CoolFace
Apppublic

devindulitha/shopnest-commerce-cloud

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html84 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>ShopNest | Multi-Tenant E-Commerce Platform</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="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>12</head>13<body class="bg-gray-50">14    <custom-navbar></custom-navbar>15    16    <main class="container mx-auto px-4 py-12">17        <!-- Hero Section -->18        <section class="text-center mb-20">19            <h1 class="text-5xl font-bold mb-6 text-gray-900">Power Your Business with ShopNest</h1>20            <p class="text-xl text-gray-600 max-w-3xl mx-auto mb-8">21                The all-in-one e-commerce platform for growing brands. Multi-tenant, secure, and scalable.22            </p>23            <div class="flex justify-center gap-4">24                <a href="/signup" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition-colors">25                    Start Free Trial26                </a>27                <a href="/login" class="border border-blue-600 text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-blue-50 transition-colors">28                    Sign In29                </a>30            </div>31        </section>32 33        <!-- Features Grid -->34        <section class="grid md:grid-cols-3 gap-8 mb-20">35            <div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">36                <i data-feather="shield" class="w-10 h-10 text-blue-600 mb-4"></i>37                <h3 class="text-xl font-semibold mb-2">Enterprise Security</h3>38                <p class="text-gray-600">RLS, 2FA, and audit logging to protect your business data.</p>39            </div>40            <div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">41                <i data-feather="credit-card" class="w-10 h-10 text-blue-600 mb-4"></i>42                <h3 class="text-xl font-semibold mb-2">Seamless Payments</h3>43                <p class="text-gray-600">Stripe integration with hosted checkout for PCI compliance.</p>44            </div>45            <div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition-shadow">46                <i data-feather="layers" class="w-10 h-10 text-blue-600 mb-4"></i>47                <h3 class="text-xl font-semibold mb-2">Multi-Tenant</h3>48                <p class="text-gray-600">Isolated stores with shared infrastructure for maximum efficiency.</p>49            </div>50        </section>51 52        <!-- Demo Section -->53        <section class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white rounded-xl p-8 md:p-12 mb-20">54            <div class="max-w-4xl mx-auto text-center">55                <h2 class="text-3xl font-bold mb-4">See It In Action</h2>56                <p class="text-blue-100 mb-8 text-lg">57                    Experience our demo store with full admin capabilities. No credit card required.58                </p>59                <a href="/demo" class="inline-block bg-white text-blue-600 px-6 py-3 rounded-lg font-medium hover:bg-blue-50 transition-colors">60                    Launch Demo Store61                </a>62            </div>63        </section>64    </main>65 66    <custom-footer></custom-footer>67    <script src="components/navbar.js"></script>68    <script src="components/footer.js"></script>69    <script src="components/sidebar.js"></script>70    <script src="script.js"></script>71<script>72        feather.replace();73        VANTA.NET({74            el: "body",75            color: 0x3b82f6,76            backgroundColor: 0xf9fafb,77            points: 12,78            maxDistance: 20,79            spacing: 1580        });81    </script>82<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>83</body>84</html>