Deepseek ArtifactsDeepseek Artifacts

跨境会计应用开发

4.0
en
软件开发
会计应用
跨境业务
软件开发

Prompt

Make me an accounting application and transfer work from one country to another

Generated Result

import React from 'react';

function App() {
  return (
    <div className="min-h-screen bg-gray-100 flex flex-col">
      <header className="bg-blue-600 text-white p-6">
        <h1 className="text-3xl font-bold">Global Accounting Transfer</h1>
      </header>
      <main className="flex-grow p-6">
        <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Account Overview</h2>
            <p className="text-gray-700">View and manage your accounts across different countries.</p>
          </div>
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Transfer Funds</h2>
            <p className="text-gray-700">Transfer money securely between accounts in different countries.</p>
          </div>
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Exchange Rates</h2>
            <p className="text-gray-700">Check the latest exchange rates for international transfers.</p>
          </div>
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Transaction History</h2>
            <p className="text-gray-700">Review your past transactions and export records.</p>
          </div>
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Notifications</h2>
            <p className="text-gray-700">Receive alerts and notifications for your account activities.</p>
          </div>
          <div className="bg-white p-6 rounded-lg shadow-md">
            <h2 className="text-xl font-semibold mb-4">Support</h2>
            <p className="text-gray-700">Contact our support team for any inquiries or assistance.</p>
          </div>
        </div>
      </main>
      <footer className="bg-blue-600 text-white p-6 text-center">
        <p>&copy; 2025 Global Accounting Transfer. All rights reserved.</p>
      </footer>
    </div>
  );
}

export default App;

More Recommendations

View All