Deepseek ArtifactsDeepseek Artifacts

穆斯林纪念程序设计

4.0
en
宗教与信仰
伊斯兰
纪念程序
音频下载

Prompt

You can design a special Muslim remembrance program. I want it to have an Islamic interface that includes morning and evening remembrances. I can add new remembrances with special times, plus each remembrance has its number by clicking on the number. I can also add a special section for legal ruqyah, and I can download audio as well as writing.

Generated Result

import React, { useState } from 'react';

function App() {
 const [remembrances, setRemembrances] = useState([
 { id: 1, text: 'Morning Remembrance 1', time: '06:00 AM', audio: 'audio1.mp3' },
 { id: 2, text: 'Evening Remembrance 1', time: '06:00 PM', audio: 'audio2.mp3' }
 ]);
 const [newRemembrance, setNewRemembrance] = useState('');
 const [newTime, setNewTime] = useState('');
 const [ruqyah, setRuqyah] = useState('');

 const addRemembrance = () => {
 if (newRemembrance && newTime) {
 const newId = remembrances.length + 1;
 setRemembrances([...remembrances, { id: newId, text: newRemembrance, time: newTime }]);
 setNewRemembrance('');
 setNewTime('');
 }
 };

 return (
 <div className="min-h-screen bg-gradient-to-r from-green-100 to-blue-100 p-10">
 <h1 className="text-4xl font-bold text-center text-green-900 mb-10">Muslim Remembrance Program</h1>
 <div className="grid grid-cols-1 md:grid-cols-2 gap-6 mb-10">
 <div className="bg-white p-6 rounded-lg shadow-lg">
 <h2 className="text-2xl font-semibold text-green-800 mb-4">Remembrance List</h2>
 {remembrances.map(item => (
 <div key={item.id} className="mb-4">
 <p className="text-lg font-medium text-green-700">{item.text} - <span className="text-gray-500">{item.time}</span></p>
 </div>
 ))}
 </div>
 <div className="bg-white p-6 rounded-lg shadow-lg">
 <h2 className="text-2xl font-semibold text-green-800 mb-4">Add New Remembrance</h2>
 <input type="text" className="w-full p-2 mb-3 border rounded" placeholder="Remembrance text" value={newRemembrance} onChange={(e) => setNewRemembrance(e.target.value)} />
 <input type="time" className="w-full p-2 mb-3 border rounded" value={newTime} onChange={(e) => setNewTime(e.target.value)} />
 <button onClick={addRemembrance} className="w-full p-2 bg-green-600 text-white rounded hover:bg-green-700">Add Remembrance</button>
 </div>
 </div>
 <div className="bg-white p-6 rounded-lg shadow-lg">
 <h2 className="text-2xl font-semibold text-green-800 mb-4">Legal Ruqyah</h2>
 <textarea className="w-full p-2 border rounded" rows="4" placeholder="Enter legal ruqyah text" value={ruqyah} onChange={(e) => setRuqyah(e.target.value)}></textarea>
 </div>
 <footer className="text-center text-gray-600 mt-10">
 © 2025 Muslim Remembrance Program. All rights reserved.
 </footer>
 </div>
 );
}

export default App;

More Recommendations

View All

Build ChatGPT-Like Web Interface

4.0
Software Development
en
AI Integration
Full-Stack Development
ChatGPT
UI Design
Backend Orchestration
You are a professional full-stack developer AI with deep experience in building AI-integrated UIs, backend orchestration, and vector memory systems. I want you to build a **web-based ChatGPT-like int...

Flutter 产品列表页

4.0
编程开发
en
Flutter
Dart
产品列表
class ProductListPage extends StatefulWidget { final bool useArabic; const ProductListPage({super.key, this.useArabic = false}); @override State<ProductListPage> createState() => _ProductLis...

Flutter产品列表页

4.0
编程开发
en
Flutter
产品列表
Widget
class ProductListPage extends StatefulWidget { final bool useArabic; const ProductListPage({super.key, this.useArabic = false}); @override State<ProductListPage> createState() => _ProductLis...

Build XO App with AI

4.0
Programming
en
Tic Tac Toe
AI Game
JavaScript
create a complete XO (Tic Tac Toe) app with AI opponent: "Build a modern, fully-featured Tic Tac Toe (XO) app that includes: A clean, user-friendly interface optimized for mobile, tablet, and web. ...

Generate YouTube Subscribers

4.0
Technology
en
YouTube
Subscribers
App
Make an app let generate YouTube subscribers and and comments by enter your username after that the says how many subscribers and like do you want so you type the amount of likes and subscribers , so ...

YouTube Subscribers App

4.0
Technology
en
YouTube
Subscribers
App
Make an app let generate YouTube subscribers and and comments by enter your username after that the says how many subscribers and like do you want so you type the amount of likes and subscribers , so ...