Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH committed Sep 8, 2024
1 parent 02168a9 commit 8fd447d
Showing 1 changed file with 107 additions and 0 deletions.
107 changes: 107 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<html>
<head>
<title>PiStellar Nexus</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-900 text-white font-roboto">
<header class="bg-gray-800 p-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-3xl font-bold">PiStellar Nexus</h1>
<nav>
<ul class="flex space-x-4">
<li><a href="#" class="hover:text-gray-400">Home</a></li>
<li><a href="#" class="hover:text-gray-400">Features</a></li>
<li><a href="#" class="hover:text-gray-400">Services</a></li>
<li><a href="#" class="hover:text-gray-400">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="container mx-auto p-8">
<section class="text-center mb-12">
<h2 class="text-4xl font-bold mb-4">Welcome to PiStellar Nexus</h2>
<p class="text-lg">#455 updated last week</p>
<p class="text-xl mt-4">PiStellar Nexus is a cutting-edge, decentralized network that seamlessly integrates Pi Network and Stellar protocol, enabling fast, secure, and low-cost transactions between the two ecosystems.</p>
</section>
<section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-bolt text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Fast Transactions</h3>
<p>Experience lightning-fast transactions between Pi Network and Stellar protocol.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-lock text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Secure</h3>
<p>Our decentralized network ensures the highest level of security for your transactions.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-dollar-sign text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Low-Cost</h3>
<p>Enjoy low-cost transactions without compromising on speed or security.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-sync-alt text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Seamless Integration</h3>
<p>Effortlessly integrate Pi Network and Stellar protocol for a unified experience.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-shield-alt text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Advanced Security</h3>
<p>Utilize state-of-the-art security measures to protect your assets and data.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-chart-line text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Real-Time Analytics</h3>
<p>Access real-time analytics to monitor and optimize your transactions.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-mobile-alt text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Mobile Friendly</h3>
<p>Enjoy a seamless experience on both desktop and mobile devices.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-cloud text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Cloud Integration</h3>
<p>Leverage cloud technology for enhanced scalability and performance.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-user-shield text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">User Privacy</h3>
<p>Prioritize user privacy with robust data protection protocols.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-robot text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">AI-Powered Insights</h3>
<p>Utilize AI to gain insights and optimize your transaction strategies.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-network-wired text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Decentralized Network</h3>
<p>Benefit from a fully decentralized network for enhanced reliability.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-globe text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Global Reach</h3>
<p>Connect with users and services worldwide with our global network.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-cogs text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Customizable Solutions</h3>
<p>Tailor our services to meet your specific needs and requirements.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg">
<i class="fas fa-headset text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">24/7 Support</h3>
<p>Get round-the-clock support from our dedicated team of experts.</p>
</div>
</section>
</main>
<footer class="bg-gray-800 p-4 mt-12">
<div class="container mx-auto text-center">
<p>&copy; 2023 PiStellar Nexus. All rights reserved.</p>
</div>
</footer>
</body>
</html>

0 comments on commit 8fd447d

Please sign in to comment.