Skip to content

Commit

Permalink
Update ROADMAP.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sukunetsiz committed Feb 13, 2025
1 parent 6eb0863 commit 2f57623
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 183 deletions.
13 changes: 0 additions & 13 deletions app/Http/Controllers/MonetaController.php

This file was deleted.

6 changes: 3 additions & 3 deletions docs/ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ On January 1st, I created the Kabus Marketplace Script repository, marking the b
- [X] Write a comprehensive "How to Buy Monero" guide.

### March 3rd Goals (v0.9)
- [ ] Implement a feature to allow users and vendors to create and manage disputes.
- [ ] Create "My Products" and "My Orders" pages, making them fully functional.
- [ ] Finalize vendor and advertisement application system with Monero payment integration.
- [ ] Implement 'My Sales' for vendors and 'My Orders' for buyers.
- [X] Write a comprehensive guide for using Kleopatra.
- [X] Finish functionality for creating and editing digital, cargo and dead drop products.

### April 4th Goals (v1.0)
- [ ] Finish and implement the Moneta Chance game.
- [ ] Implement a feature to allow users and vendors to create and manage disputes.
- [ ] Add product review functionality.
- [ ] Integrate optional Baklava CAPTCHA.
- [ ] Add walletless escrow mechanism for buying products, making the script fully functional.
113 changes: 0 additions & 113 deletions public/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2588,119 +2588,6 @@ border-radius:8px;
margin-top:20px
}

.moneta-index-container {
max-width:900px;
margin:0 auto;
padding:0 20px
}

.moneta-index-card {
background-color:#1e1e1e;
border-radius:12px;
border:1px solid #3c3c3c;
box-shadow:0 4px 20px #0000004d;
overflow:hidden
}

.moneta-index-card-header {
background-color:#2c2c2c;
border-bottom:2px solid #bb86fc;
padding:18px;
text-align:center
}

.moneta-index-title {
color:#bb86fc;
font-size:24px;
margin:0;
font-weight:700
}

.moneta-index-card-body {
padding:20px;
color:#e0e0e0
}

.moneta-index-alert {
background-color:#2c2c2c;
border-left:4px solid #bb86fc;
padding:15px;
margin-bottom:20px;
border-radius:8px
}

.moneta-index-alert-text {
color:#e0e0e0;
line-height:1.4;
margin:0
}

.moneta-index-section {
margin-bottom:20px
}

.moneta-index-section-title {
color:#bb86fc;
font-size:18px;
margin-bottom:12px;
padding-bottom:8px;
border-bottom:1px solid #3c3c3c
}

.moneta-index-list {
list-style:none;
padding:0;
margin:0
}

.moneta-index-list-item {
padding:8px 0 8px 25px;
position:relative;
color:#e0e0e0;
line-height:1.4
}

.moneta-index-list-item::before {
content:"✦";
position:absolute;
left:0;
color:#bb86fc
}

.moneta-index-highlight {
color:#bb86fc;
font-weight:700
}

.moneta-index-action {
display:flex;
justify-content:space-between;
align-items:center;
margin-top:-12px;
padding:0 100px
}

.moneta-index-button {
display:inline-block;
background-color:#bb86fc;
color:#121212;
padding:12px 25px;
border-radius:8px;
font-size:16px;
font-weight:700;
text-decoration:none;
text-transform:uppercase;
letter-spacing:1px;
transition:all .3s ease;
border:none
}

.moneta-index-button:hover {
background-color:#96c;
transform:translateY(-2px);
box-shadow:0 4px 15px #bb86fc4d
}

.admin-support-index-container {
max-width:1200px;
margin:40px auto;
Expand Down
1 change: 0 additions & 1 deletion resources/views/components/left-bar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<li><a href="{{ route('return-addresses.index') }}" class="{{ request()->routeIs('return-addresses.*') ? 'active' : '' }}">💰 Addresses</a></li>
<li><a href="{{ route('vendors.index') }}" class="{{ request()->routeIs('vendors.*') ? 'active' : '' }}">📈 Vendors</a></li>
<li><a href="{{ route('become.vendor') }}" class="{{ request()->routeIs('become.*') ? 'active' : '' }}">🌟 Be a Vendor</a></li>
<li><a href="{{ route('moneta.index') }}" class="{{ request()->routeIs('moneta.*') ? 'active' : '' }}">🎲 Moneta ⛔</a></li>
<li><a href="{{ route('references.index') }}" class="{{ request()->routeIs('references.*') ? 'active' : '' }}">🤝🏻 References</a></li>
@if(auth()->user()->isAdmin())
<li><a href="{{ route('admin.index') }}" class="{{ request()->routeIs('admin.*') ? 'active' : '' }}">👑 AdminPanel</a></li>
Expand Down
1 change: 0 additions & 1 deletion resources/views/components/right-bar.blade.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<li><a href="{{ route('profile') }}" class="{{ request()->routeIs('profile') ? 'active' : '' }}">Account 🖥️</a></li>
<li><a href="{{ route('support.index') }}" class="{{ request()->routeIs('support.*') ? 'active' : '' }}">Support 🛠️</a></li>
<li><a href="{{ route('messages.index') }}" class="{{ request()->routeIs('messages.*') ? 'active' : '' }}">Messages 💬</a></li>
<li><a href="#" class="{{ request()->routeIs('reviews') ? 'active' : '' }}">⛔ Reviews 👍</a></li>
<li><a href="{{ route('rules') }}" class="{{ request()->routeIs('rules') ? 'active' : '' }}">Rules ⚖️</a></li>
<li><a href="{{ route('guides.index') }}" class="{{ request()->routeIs('guides.*') ? 'active' : '' }}">Guides 🧭</a></li>
@if(auth()->user()->isVendor())
Expand Down
47 changes: 0 additions & 47 deletions resources/views/moneta/index.blade.php

This file was deleted.

Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion resources/views/return-addresses.blade.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@endif

<div class="return-addresses-disclaimer">
To shop at {{ config('app.name') }} or play Moneta, you need to add at least one Monero address. Refunds will be made to this address. For your security, use a subaddress instead of your main address and be careful not to share this address elsewhere. Main Monero addresses usually start with "4", while subaddresses start with "8".
To shop at {{ config('app.name') }}, you need to add at least one Monero address. Refunds will be made to this address. For your security, use a subaddress instead of your main address and be careful not to share this address elsewhere. Main Monero addresses usually start with "4", while subaddresses start with "8".
</div>

<div class="return-addresses-card">
Expand Down
4 changes: 0 additions & 4 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use App\Http\Controllers\AdminController;
use App\Http\Controllers\VendorController;
use App\Http\Controllers\ReturnAddressController;
use App\Http\Controllers\MonetaController;
use App\Http\Controllers\SupportController;
use App\Http\Controllers\GuidesController;
use App\Http\Controllers\NotificationController;
Expand Down Expand Up @@ -128,9 +127,6 @@
Route::get('/support/{supportRequest:ticket_id}', [SupportController::class, 'show'])->name('support.show');
Route::post('/support/{supportRequest:ticket_id}/reply', [SupportController::class, 'reply'])->name('support.reply');

// Moneta Game route
Route::get('/moneta', [MonetaController::class, 'index'])->name('moneta.index');

// Rules route
Route::get('/rules', [RulesController::class, 'index'])->name('rules');

Expand Down

0 comments on commit 2f57623

Please # to comment.