File size: 4,289 Bytes
ac16338
 
 
466ca82
 
 
ac16338
466ca82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac16338
466ca82
 
ac16338
466ca82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac16338
466ca82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac16338
466ca82
 
 
 
 
 
ac16338
466ca82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac16338
466ca82
ac16338
 
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Bondr – Smart Contract-Driven Telegram Groups</title>

  <!-- Tailwind with extended theme -->
  <script src="https://cdn.tailwindcss.com"></script>
  <script>
    tailwind.config = {
      theme: {
        extend: {
          colors: {
            primary: '#5F2EEA',
            'primary-light': '#9C8AF5',
            background: '#F9F9FC',
            'ribbon-gray': '#D1CFD9',
            'text-dark': '#1E1E24',
            success: '#24E1A0',
            error: '#FF6B6B',
            'accent-blue': '#5DC9F4'
          },
          borderRadius: { lg: '1.5rem', xl: '2rem' },
          boxShadow: {
            md: '0 8px 24px rgba(0,0,0,0.06)',
            lg: '0 12px 40px rgba(0,0,0,0.08)'
          },
          fontFamily: { sans: ['Poppins','sans-serif'] }
        }
      }
    }
  </script>

  <link rel="stylesheet" href="styles.css"/>
</head>

<body class="antialiased">
  <!-- NAVIGATION -->
  <nav class="fixed w-full bg-white/30 backdrop-blur-md px-8 py-4 flex items-center justify-between z-50">
    <div class="flex items-center gap-4">
      <img src="bonderLOGONEWPURPLE.png" class="w-10 h-10 rounded-full" alt="Bondr Logo"/>
      <span class="text-2xl font-bold text-primary">Bondr</span>
    </div>
    <ul class="hidden md:flex gap-8 text-text-dark">
      <li><a href="#features">Features</a></li>
      <li><a href="#how-it-works">How It Works</a></li>
      <li><a href="#contact">Contact</a></li>
    </ul>
    <div class="flex gap-4">
      <button class="btn-secondary">Sign In</button>
      <button class="btn-primary">Get Started</button>
    </div>
  </nav>

  <!-- HERO -->
  <section class="min-h-screen flex flex-col items-center justify-center text-center px-6 bg-primary text-white pt-32">
    <h1 class="text-5xl md:text-7xl mb-6 leading-tight">
      Smart Contract-Driven<br/>
      <span class="bg-clip-text text-transparent bg-gradient-to-r from-primary to-primary-light">
        Telegram Groups
      </span>
    </h1>
    <p class="text-xl max-w-2xl mb-8 text-background/80">
      Bondr blends Telegram UX, on-chain trust & payments into one seamless flow.
    </p>
    <div class="flex flex-col sm:flex-row gap-4">
      <button class="btn-primary glow">Create Your Bondr Group</button>
      <button class="btn-secondary flex items-center gap-2">
        <i class="fas fa-play-circle"></i> Watch Demo
      </button>
    </div>
  </section>

  <!-- FEATURES -->
  <section id="features" class="py-20 px-6 bg-background">
    <div class="max-w-6xl mx-auto grid md:grid-cols-2 lg:grid-cols-3 gap-8">
      <div class="glass-card">
        <div class="w-12 h-12 bg-primary flex items-center justify-center rounded-lg mb-4 text-white">
          <i class="fas fa-robot"></i>
        </div>
        <h3 class="text-2xl mb-2">Instant Multi-Sig</h3>
        <p class="mb-4 text-text-dark/80">
          Add our bot, auto-deploy Gnosis Safe wallet + smart contract.
        </p>
        <ul class="space-y-2 text-text-dark/70">
          <li class="flex items-start">
            <i class="fas fa-check mr-2 text-success"></i> Safe multi-sig creation
          </li>
          <li class="flex items-start">
            <i class="fas fa-check mr-2 text-success"></i> Thirdweb / Gnosis SDK
          </li>
        </ul>
      </div>
      <!-- …repeat for each feature card… -->
    </div>
  </section>

  <!-- (Add How-It-Works, Technology, CTA & Footer sections similarly) -->
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=web3district/bondr2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>