Skip to content

Commit

Permalink
🚀 add static file
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelStark committed Jul 29, 2024
1 parent 75c814d commit 407ae74
Show file tree
Hide file tree
Showing 2 changed files with 153 additions and 0 deletions.
8 changes: 8 additions & 0 deletions askeladd-dvm-marketplace/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ const nextConfig = {
}
return config;
},
async rewrites() {
return [
{
source: '/pitchdeck',
destination: '/pitchdeck/index.html',
},
]
},
};

export default nextConfig;
145 changes: 145 additions & 0 deletions askeladd-dvm-marketplace/public/pitchdeck/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/theme/black.min.css"
/>
<style>
.reveal h1,
.reveal h2,
.reveal h3,
.reveal p {
font-family: Arial, sans-serif;
}
.reveal h1 {
font-size: 2.5em;
}
.reveal h2 {
font-size: 1.8em;
}
.reveal p {
font-size: 1.2em;
}
.reveal ul {
font-size: 1em;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Askeladd</h1>
<h2>Censorship-Resistant Global Proving Network</h2>
</section>

<section>
<h2>The Vision</h2>
<p>
Empowering a decentralized future with accessible,
censorship-resistant proof generation and verification
</p>
</section>

<section>
<h2>The Problem</h2>
<ul>
<li>Zero-Knowledge Proofs are transforming industries</li>
<li>Growing need for decentralized proving networks</li>
<li>Centralized solutions risk censorship and control</li>
</ul>
</section>

<section>
<h2>Solution: Askeladd</h2>
<ul>
<li>Decentralized proving network</li>
<li>Censorship-resistant by design</li>
<li>Leverages Nostr protocol for communication</li>
<li>Utilizes STWO prover for proof generation</li>
</ul>
</section>

<section>
<h2>Why Nostr?</h2>
<ul>
<li>Minimalistic and simple</li>
<li>Focused on censorship resistance</li>
<li>Decentralized without blockchain overhead</li>
<li>Built-in payment system (Lightning Network)</li>
</ul>
</section>

<section>
<h2>Why Data Vending Machines ?</h2>
<ul>
<li>Standardized</li>
<li>Flexible flow for service providers and customers</li>
<li>Stimulate healthy competition of proving services</li>
</ul>
</section>

<section>
<h2>Why STWO?</h2>
<ul>
<li>Fastest STARK prover</li>
<li>Open source</li>
<li>Easy to integrate</li>
<li>WASM compatible</li>
</ul>
</section>

<section>
<h2>Market Potential</h2>
<ul>
<li>ZK proofs transforming blockchain industry</li>
<li>Expanding to other sectors (finance, healthcare, etc.)</li>
<li>Growing need for decentralized infrastructure</li>
</ul>
</section>

<section>
<h2>Competitive Advantage</h2>
<ul>
<li>True decentralization</li>
<li>Censorship resistance</li>
<li>Scalability through Nostr's simplicity</li>
<li>Cost-effective solution</li>
</ul>
</section>

<section>
<h2>Roadmap</h2>
<ul>
<li>Implement NIP-90 for service provider interactions</li>
<li>Integrate NIP-57 for Lightning Network payments</li>
<li>Develop spam protection using NIP-13</li>
<li>Enhance proof metadata handling with NIP-94/96</li>
</ul>
</section>

<section>
<h2>Investment Opportunity</h2>
<p>
Join us in building the future of decentralized proof generation and
verification
</p>
</section>

<section>
<h1>Thank You</h1>
<p>Askeladd: Empowering a Censorship-Resistant Future</p>
</section>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.js"></script>
<script>
Reveal.initialize();
</script>
</body>
</html>

0 comments on commit 407ae74

Please sign in to comment.