dwilcox24 commited on
Commit
f31241d
·
verified ·
1 Parent(s): e58c7c7

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +113 -109
  2. prompts.txt +2 -1
index.html CHANGED
@@ -26,9 +26,12 @@
26
  <style>
27
  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');
28
 
29
- .hero-pattern {
30
- background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjYiPgo8cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSI2IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNiA2IiBzdHJva2U9IiMxMTExMTEiIHN0cm9rZS13aWR0aD0iMC41Ij48L3BhdGg+CjxwYXRoIGQ9Ik02IDBMMCA2IiBzdHJva2U9IiMxMTExMTEiIHN0cm9rZS13aWR0aD0iMC41Ij48L3BhdGg+Cjwvc3ZnPg==');
31
- opacity: 0.05;
 
 
 
32
  }
33
 
34
  .leaf-bg {
@@ -91,8 +94,8 @@
91
  </div>
92
  </nav>
93
 
94
- <!-- Hero Section -->
95
- <section class="relative overflow-hidden hero-pattern">
96
  <div class="absolute inset-0 leaf-bg"></div>
97
  <div class="container mx-auto px-4 py-24 md:py-32 relative z-10">
98
  <div class="max-w-3xl">
@@ -115,6 +118,7 @@
115
  <div class="absolute bottom-0 left-0 right-0 h-16 bg-gradient-to-t from-black to-transparent"></div>
116
  </section>
117
 
 
118
  <!-- Marquee -->
119
  <div class="bg-nyc-purple py-3 overflow-hidden">
120
  <div class="flex whitespace-nowrap">
@@ -640,114 +644,114 @@
640
  <ul class="space-y-2">
641
  <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Whitepaper</a></li>
642
  <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Tokenomics</a></li>
643
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Business Portal</a></li>
644
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Roadmap</a></li>
645
- </ul>
646
- </div>
647
-
648
- <div>
649
- <h4 class="text-lg font-bold mb-4">Resources</h4>
650
- <ul class="space-y-2">
651
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">FAQ</a></li>
652
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Community Guidelines</a></li>
653
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Legalization Efforts</a></li>
654
- <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Contact Us</a></li>
655
- </ul>
656
- </div>
657
-
658
- <div>
659
- <h4 class="text-lg font-bold mb-4">Connect</h4>
660
- <div class="flex space-x-4 mb-4">
661
- <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-green rounded-full flex items-center justify-center text-xl transition">
662
- <i class="fab fa-twitter"></i>
663
- </a>
664
- <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-purple rounded-full flex items-center justify-center text-xl transition">
665
- <i class="fab fa-discord"></i>
666
- </a>
667
- <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-gold rounded-full flex items-center justify-center text-xl transition">
668
- <i class="fab fa-instagram"></i>
669
- </a>
670
- <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-green-600 rounded-full flex items-center justify-center text-xl transition">
671
- <i class="fab fa-telegram"></i>
672
- </a>
673
- </div>
674
- <p class="text-gray-400 text-sm">
675
- Contact: hello@smokeoutnyc.io
676
- </p>
677
- </div>
678
- </div>
679
-
680
- <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
681
- <p class="text-gray-500 text-sm mb-4 md:mb-0">
682
- &copy; 2023 Smoke Out NYC. All rights reserved.
683
- </p>
684
- <div class="flex space-x-6">
685
- <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Privacy Policy</a>
686
- <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Terms of Service</a>
687
- <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Disclosures</a>
688
- </div>
689
- </div>
690
- </div>
691
- </footer>
692
 
693
- <!-- Back to Top -->
694
- <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-nyc-green rounded-full flex items-center justify-center text-black text-xl shadow-lg transition opacity-0 invisible">
695
- <i class="fas fa-arrow-up"></i>
696
- </button>
 
 
 
 
 
697
 
698
- <script>
699
- // FAQ toggle functionality
700
- document.querySelectorAll('.faq-toggle').forEach(button => {
701
- button.addEventListener('click', () => {
702
- const content = button.nextElementSibling;
703
- const icon = button.querySelector('i');
704
-
705
- content.classList.toggle('hidden');
706
- icon.classList.toggle('rotate-180');
707
- });
708
- });
709
-
710
- // Back to top button
711
- const backToTopButton = document.getElementById('back-to-top');
712
-
713
- window.addEventListener('scroll', () => {
714
- if (window.pageYOffset > 300) {
715
- backToTopButton.classList.remove('opacity-0', 'invisible');
716
- backToTopButton.classList.add('opacity-100', 'visible');
717
- } else {
718
- backToTopButton.classList.remove('opacity-100', 'visible');
719
- backToTopButton.classList.add('opacity-0', 'invisible');
720
- }
721
- });
722
-
723
- backToTopButton.addEventListener('click', () => {
724
- window.scrollTo({
725
- top: 0,
726
- behavior: 'smooth'
727
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
728
  });
729
-
730
- // Smooth scrolling for anchor links
731
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
732
- anchor.addEventListener('click', function(e) {
733
- e.preventDefault();
734
-
735
- const targetId = this.getAttribute('href');
736
- if (targetId === '#') return;
737
-
738
- const targetElement = document.querySelector(targetId);
739
- if (targetElement) {
740
- targetElement.scrollIntoView({
741
- behavior: 'smooth'
742
- });
743
- }
744
- });
 
 
 
745
  });
746
-
747
- // Mobile menu toggle (placeholder - would need actual implementation)
748
- document.querySelector('.md\\:hidden').addEventListener('click', () => {
749
- alert('Mobile menu would open here in a full implementation');
 
 
 
 
 
 
 
 
 
 
 
 
750
  });
751
- </script>
 
 
 
 
 
 
752
  <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=dwilcox24/nyc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
753
  </html>
 
26
  <style>
27
  @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');
28
 
29
+ .hero-image {
30
+ background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
31
+ url('https://images.unsplash.com/photo-1600857264209-b900a5a0b8f8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
32
+ background-size: cover;
33
+ background-position: center;
34
+ background-repeat: no-repeat;
35
  }
36
 
37
  .leaf-bg {
 
94
  </div>
95
  </nav>
96
 
97
+ <!-- Hero Section with Image -->
98
+ <section class="relative overflow-hidden hero-image min-h-[80vh] flex items-center">
99
  <div class="absolute inset-0 leaf-bg"></div>
100
  <div class="container mx-auto px-4 py-24 md:py-32 relative z-10">
101
  <div class="max-w-3xl">
 
118
  <div class="absolute bottom-0 left-0 right-0 h-16 bg-gradient-to-t from-black to-transparent"></div>
119
  </section>
120
 
121
+ <!-- Rest of the HTML remains the same -->
122
  <!-- Marquee -->
123
  <div class="bg-nyc-purple py-3 overflow-hidden">
124
  <div class="flex whitespace-nowrap">
 
644
  <ul class="space-y-2">
645
  <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Whitepaper</a></li>
646
  <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Tokenomics</a></li>
647
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Business Portal</a></li>
648
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Roadmap</a></li>
649
+ </ul>
650
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651
 
652
+ <div>
653
+ <h4 class="text-lg font-bold mb-4">Resources</h4>
654
+ <ul class="space-y-2">
655
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">FAQ</a></li>
656
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Community Guidelines</a></li>
657
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Legalization Efforts</a></li>
658
+ <li><a href="#" class="text-gray-400 hover:text-nyc-green transition">Contact Us</a></li>
659
+ </ul>
660
+ </div>
661
 
662
+ <div>
663
+ <h4 class="text-lg font-bold mb-4">Connect</h4>
664
+ <div class="flex space-x-4 mb-4">
665
+ <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-green rounded-full flex items-center justify-center text-xl transition">
666
+ <i class="fab fa-twitter"></i>
667
+ </a>
668
+ <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-purple rounded-full flex items-center justify-center text-xl transition">
669
+ <i class="fab fa-discord"></i>
670
+ </a>
671
+ <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-nyc-gold rounded-full flex items-center justify-center text-xl transition">
672
+ <i class="fab fa-instagram"></i>
673
+ </a>
674
+ <a href="#" class="w-10 h-10 bg-gray-800 hover:bg-green-600 rounded-full flex items-center justify-center text-xl transition">
675
+ <i class="fab fa-telegram"></i>
676
+ </a>
677
+ </div>
678
+ <p class="text-gray-400 text-sm">
679
+ Contact: hello@smokeoutnyc.io
680
+ </p>
681
+ </div>
682
+ </div>
683
+
684
+ <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
685
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">
686
+ &copy; 2023 Smoke Out NYC. All rights reserved.
687
+ </p>
688
+ <div class="flex space-x-6">
689
+ <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Privacy Policy</a>
690
+ <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Terms of Service</a>
691
+ <a href="#" class="text-gray-500 hover:text-nyc-green text-sm transition">Disclosures</a>
692
+ </div>
693
+ </div>
694
+ </div>
695
+ </footer>
696
+
697
+ <!-- Back to Top -->
698
+ <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-nyc-green rounded-full flex items-center justify-center text-black text-xl shadow-lg transition opacity-0 invisible">
699
+ <i class="fas fa-arrow-up"></i>
700
+ </button>
701
+
702
+ <script>
703
+ // FAQ toggle functionality
704
+ document.querySelectorAll('.faq-toggle').forEach(button => {
705
+ button.addEventListener('click', () => {
706
+ const content = button.nextElementSibling;
707
+ const icon = button.querySelector('i');
708
+
709
+ content.classList.toggle('hidden');
710
+ icon.classList.toggle('rotate-180');
711
  });
712
+ });
713
+
714
+ // Back to top button
715
+ const backToTopButton = document.getElementById('back-to-top');
716
+
717
+ window.addEventListener('scroll', () => {
718
+ if (window.pageYOffset > 300) {
719
+ backToTopButton.classList.remove('opacity-0', 'invisible');
720
+ backToTopButton.classList.add('opacity-100', 'visible');
721
+ } else {
722
+ backToTopButton.classList.remove('opacity-100', 'visible');
723
+ backToTopButton.classList.add('opacity-0', 'invisible');
724
+ }
725
+ });
726
+
727
+ backToTopButton.addEventListener('click', () => {
728
+ window.scrollTo({
729
+ top: 0,
730
+ behavior: 'smooth'
731
  });
732
+ });
733
+
734
+ // Smooth scrolling for anchor links
735
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
736
+ anchor.addEventListener('click', function(e) {
737
+ e.preventDefault();
738
+
739
+ const targetId = this.getAttribute('href');
740
+ if (targetId === '#') return;
741
+
742
+ const targetElement = document.querySelector(targetId);
743
+ if (targetElement) {
744
+ targetElement.scrollIntoView({
745
+ behavior: 'smooth'
746
+ });
747
+ }
748
  });
749
+ });
750
+
751
+ // Mobile menu toggle (placeholder - would need actual implementation)
752
+ document.querySelector('.md\\:hidden').addEventListener('click', () => {
753
+ alert('Mobile menu would open here in a full implementation');
754
+ });
755
+ </script>
756
  <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=dwilcox24/nyc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
757
  </html>
prompts.txt CHANGED
@@ -1 +1,2 @@
1
- Deep Site Prompt: Smoke Out NYC - Igniting Local Cannabis Legalization through Community and Rewards Core Concept: Smoke Out NYC is envisioned as a Solana-backed meme coin with a tangible purpose: to galvanize community support for local cannabis legalization within New York City and empower participating small businesses through a unique rewards system. Key Areas to Explore: Narrative & Branding: The "Why": What is the overarching story and mission behind Smoke Out NYC? Go beyond just legalization – what are the deeper community benefits you envision? (e.g., economic empowerment, social justice, destigmatization). Meme Coin Identity: What kind of meme will resonate with New Yorkers and the cannabis community? What's the tone – humorous, rebellious, celebratory, or something else? How can the branding visually and verbally capture the essence of NYC and cannabis culture? Slogan/Tagline: Develop several compelling slogans that encapsulate the mission and vibe of Smoke Out NYC. Utility & Ecosystem: Shop Owner Opt-in Model: Detail the process for local shop owners (dispensaries, head shops, related businesses) to join the Smoke Out NYC ecosystem. What are the benefits for them beyond attracting customers? Token Distribution as Rewards: How will the token distribution to customers work in practice? What mechanisms will ensure fair and effective reward distribution? Incentives for Shop Owners: Elaborate on the "buy-in" process for shop owners. What are the tiers or benefits associated with purchasing tokens? How will the "free tokens as an incentive" model work and what are the associated terms? Token Spending within Stores: How will the Smoke Out NYC token be used for purchases within participating stores? Will it offer discounts, exclusive products, or other benefits? Explore the user experience for token holders. Solana Integration: Why is Solana the chosen blockchain? Highlight the specific advantages (speed, low fees, scalability) that make it suitable for this project. How will the Solana backing be communicated to users and businesses? Potential Future Utility: Beyond rewards, what other potential use cases could the Smoke Out NYC token have in the future (e.g., community governance, funding local initiatives, exclusive events)? Community & Legalization Advocacy: Building a Community: How will Smoke Out NYC foster a strong and engaged community of supporters? What role will social media, online forums, and local events play? Driving Legalization Efforts: How will the meme coin and its community contribute to the local legalization of cannabis in NYC? Will there be direct advocacy initiatives, partnerships with advocacy groups, or leveraging the token's visibility? Transparency & Trust: How will Smoke Out NYC ensure transparency and build trust within the community regarding tokenomics, distribution, and the project's goals? Tokenomics: Token Supply & Distribution: Outline a potential token supply and distribution strategy. How many tokens will be created? What percentage will be allocated for community rewards, shop owner incentives, development, marketing, and potential future use? Token Utility & Value Proposition: Clearly define the utility of the token within the ecosystem and how this utility will drive demand and potentially increase its value over time. Sustainability: How will the Smoke Out NYC ecosystem be sustainable in the long term? What mechanisms will ensure the ongoing value and utility of the token? Challenges & Mitigation: Regulatory Landscape: Acknowledge the complexities of cannabis regulations in NYC and potential hurdles. How will Smoke Out NYC navigate these challenges? Adoption & Scalability: What strategies will be employed to drive adoption among both consumers and shop owners? How can the model be scaled effectively across NYC? Security & Trust: How will the security of the Solana-based token and the overall ecosystem be ensured? What measures will be in place to protect users and businesses?
 
 
1
+ Deep Site Prompt: Smoke Out NYC - Igniting Local Cannabis Legalization through Community and Rewards Core Concept: Smoke Out NYC is envisioned as a Solana-backed meme coin with a tangible purpose: to galvanize community support for local cannabis legalization within New York City and empower participating small businesses through a unique rewards system. Key Areas to Explore: Narrative & Branding: The "Why": What is the overarching story and mission behind Smoke Out NYC? Go beyond just legalization – what are the deeper community benefits you envision? (e.g., economic empowerment, social justice, destigmatization). Meme Coin Identity: What kind of meme will resonate with New Yorkers and the cannabis community? What's the tone – humorous, rebellious, celebratory, or something else? How can the branding visually and verbally capture the essence of NYC and cannabis culture? Slogan/Tagline: Develop several compelling slogans that encapsulate the mission and vibe of Smoke Out NYC. Utility & Ecosystem: Shop Owner Opt-in Model: Detail the process for local shop owners (dispensaries, head shops, related businesses) to join the Smoke Out NYC ecosystem. What are the benefits for them beyond attracting customers? Token Distribution as Rewards: How will the token distribution to customers work in practice? What mechanisms will ensure fair and effective reward distribution? Incentives for Shop Owners: Elaborate on the "buy-in" process for shop owners. What are the tiers or benefits associated with purchasing tokens? How will the "free tokens as an incentive" model work and what are the associated terms? Token Spending within Stores: How will the Smoke Out NYC token be used for purchases within participating stores? Will it offer discounts, exclusive products, or other benefits? Explore the user experience for token holders. Solana Integration: Why is Solana the chosen blockchain? Highlight the specific advantages (speed, low fees, scalability) that make it suitable for this project. How will the Solana backing be communicated to users and businesses? Potential Future Utility: Beyond rewards, what other potential use cases could the Smoke Out NYC token have in the future (e.g., community governance, funding local initiatives, exclusive events)? Community & Legalization Advocacy: Building a Community: How will Smoke Out NYC foster a strong and engaged community of supporters? What role will social media, online forums, and local events play? Driving Legalization Efforts: How will the meme coin and its community contribute to the local legalization of cannabis in NYC? Will there be direct advocacy initiatives, partnerships with advocacy groups, or leveraging the token's visibility? Transparency & Trust: How will Smoke Out NYC ensure transparency and build trust within the community regarding tokenomics, distribution, and the project's goals? Tokenomics: Token Supply & Distribution: Outline a potential token supply and distribution strategy. How many tokens will be created? What percentage will be allocated for community rewards, shop owner incentives, development, marketing, and potential future use? Token Utility & Value Proposition: Clearly define the utility of the token within the ecosystem and how this utility will drive demand and potentially increase its value over time. Sustainability: How will the Smoke Out NYC ecosystem be sustainable in the long term? What mechanisms will ensure the ongoing value and utility of the token? Challenges & Mitigation: Regulatory Landscape: Acknowledge the complexities of cannabis regulations in NYC and potential hurdles. How will Smoke Out NYC navigate these challenges? Adoption & Scalability: What strategies will be employed to drive adoption among both consumers and shop owners? How can the model be scaled effectively across NYC? Security & Trust: How will the security of the Solana-based token and the overall ecosystem be ensured? What measures will be in place to protect users and businesses?
2
+ I need a hero image in the header. please select a suitable image