Skip to content

Create NOVA STORE - #92

Open
slmkii wants to merge 1 commit into
ritwickdey:masterfrom
slmkii:patch-1
Open

Create NOVA STORE#92
slmkii wants to merge 1 commit into
ritwickdey:masterfrom
slmkii:patch-1

Conversation

@slmkii

@slmkii slmkii commented Apr 18, 2025

Copy link
Copy Markdown

@pantoaibot

pantoaibot Bot commented Apr 18, 2025

Copy link
Copy Markdown

Do you want me to review this PR? Please comment /review .

@slmkii

slmkii commented Apr 18, 2025

Copy link
Copy Markdown
Author
<title>NOVA | متجر إلكتروني</title>

🛍️ NOVA | متجرك الإلكتروني في الخليج

📞 خدمة العملاء: 94011884

المنتجات طلب جديد

📦 المنتجات

  <!-- منتج علي إكسبرس -->
  <div class="product">
    <img src="https://ae01.alicdn.com/kf/abc123.jpg" alt="منتج" width="100%">
    <h3>ساعة ذكية</h3>
    <p>السعر الأصلي: <span class="original-price">2</span> ريال</p>
    <p>سعر NOVA: <span class="nova-price"></span> ريال</p>
    <button>اطلب الآن</button>
  </div>
</section>

<section id="order" class="form-section">
  <h2>📝 نموذج الطلب</h2>
  <form>
    <label>الاسم الكامل</label>
    <input type="text" required />

    <label>رقم الهاتف</label>
    <input type="tel" required />

    <label>رقم البطاقة / جواز السفر</label>
    <input type="text" required />

    <label>الدولة</label>
    <select id="country" required>
      <option value="OM">عُمان</option>
      <option value="SA">السعودية</option>
      <option value="AE">الإمارات</option>
      <option value="QA">قطر</option>
      <option value="KW">الكويت</option>
      <option value="BH">البحرين</option>
    </select>

    <label>الموقع بالتفصيل</label>
    <input type="text" placeholder="اكتب عنوانك الكامل" required />

    <button type="submit">إرسال الطلب</button>
  </form>
</section>

© 2025 NOVA. جميع الحقوق محفوظة.

<script src="script.js"></script>

ساعة ذكية

السعر الأصلي: 10 ريال

سعر NOVA: ريال

عرض المنتج واطلبه
<title>NOVA STORE</title> <style> body { background: #000; color: #d4af37; font-family: sans-serif; text-align: center; } .logo { font-size: 3em; font-weight: bold; margin: 20px 0; } .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; padding: 20px; } .card { background: #111; padding: 10px; border-radius: 10px; } .card img { max-width: 100%; border-radius: 8px; } .card h3 { font-size: 1em; margin: 10px 0 5px; } .card p { margin: 0; } </style>
NOVA STORE
<script> fetch('/products') .then(res => res.json()) .then(data => { const grid = document.getElementById('products'); data.forEach(p => { const el = document.createElement('div'); el.className = 'card'; el.innerHTML = `

${p.title}

${p.title}

${p.price_final} ريال

تفاصيل `; grid.appendChild(el); }); }); </script>

@slmkii

slmkii commented Apr 18, 2025

Copy link
Copy Markdown
Author

Uploading file_00000000069461f7a6f9350f38f1340f_conversation_id=67ffe6fc-459c-8011-9441-5604e0e20927&message_id=363e0f7b-2d98-4da7-a787-637f994a8996.png…

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant