Răsfoiți Sursa

社媒对接

moshaorui 19 ore în urmă
părinte
comite
54907a3d6d
2 a modificat fișierele cu 180 adăugiri și 29 ștergeri
  1. 104 0
      public/privacy_policy.html
  2. 76 29
      resources/views/welcome.blade.php

+ 104 - 0
public/privacy_policy.html

@@ -0,0 +1,104 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Privacy Policy</title>
+    <style>
+        body {font-family: Arial, sans-serif; line-height: 1.6; margin: 20px}
+        h1, h2 {color: #333;}
+        section {margin-bottom: 30px;}
+    </style>
+</head>
+<body>
+    <header>
+        <h1>Privacy Policy</h1>
+        <p>Last updated: [Insert Date]</p>
+    </header>
+
+    <section>
+        <h2>1. Introduction</h2>
+        <p>Welcome to [Your Company Name] ("we," "our," or "us"). We are committed to protecting your personal information and your right to privacy. This Privacy Policy explains how we collect, use, and disclose your information when you use our services.</p>
+    </section>
+
+    <section>
+        <h2>2. Information We Collect</h2>
+        <h3>Personal Information</h3>
+        <p>We may collect personal information that you voluntarily provide to us, including:</p>
+        <ul>
+            <li>Name</li>
+            <li>Email address</li>
+            <li>Contact information</li>
+            <li>Payment information</li>
+            <li>Other information you choose to provide</li>
+        </ul>
+
+        <h3>Automatically Collected Information</h3>
+        <p>When you use our services, we may automatically collect:</p>
+        <ul>
+            <li>IP address</li>
+            <li>Browser type</li>
+            <li>Device information</li>
+            <li>Usage data</li>
+            <li>Cookies and tracking technologies</li>
+        </ul>
+    </section>
+
+    <section>
+        <h2>3. How We Use Your Information</h2>
+        <p>We use the information we collect for various purposes, including:</p>
+        <ul>
+            <li>To provide and maintain our services</li>
+            <li>To communicate with you</li>
+            <li>To improve our services</li>
+            <li>To comply with legal obligations</li>
+        </ul>
+    </section>
+
+    <section>
+        <h2>4. Data Sharing and Disclosure</h2>
+        <p>We may share your information in the following situations:</p>
+        <ul>
+            <li>With service providers and contractors</li>
+            <li>For business transfers</li>
+            <li>To comply with legal requirements</li>
+            <li>With your consent</li>
+        </ul>
+    </section>
+
+    <section>
+        <h2>5. Data Security</h2>
+        <p>We implement appropriate technical and organizational measures to protect your personal information. However, no electronic transmission or storage method is 100% secure.</p>
+    </section>
+
+    <section>
+        <h2>6. Your Rights</h2>
+        <p>Depending on your location, you may have rights including:</p>
+        <ul>
+            <li>Access to your personal information</li>
+            <li>Correction of inaccurate data</li>
+            <li>Deletion of your information</li>
+            <li>Objection to processing</li>
+            <li>Data portability</li>
+        </ul>
+    </section>
+
+    <section>
+        <h2>7. Cookies</h2>
+        <p>We use cookies and similar technologies to collect information and improve our services. You can manage your cookie preferences through your browser settings.</p>
+    </section>
+
+    <section>
+        <h2>8. Policy Updates</h2>
+        <p>We may update this Privacy Policy periodically. We will notify you of significant changes by posting the new policy on our website.</p>
+    </section>
+
+    <section>
+        <h2>9. Contact Us</h2>
+        <p>If you have any questions about this Privacy Policy, please contact us at:</p>
+        <p>[Your Contact Information]<br>
+        [Email Address]<br>
+        [Physical Address]</p>
+    </section>
+</body>
+</html>

+ 76 - 29
resources/views/welcome.blade.php

@@ -3,57 +3,104 @@
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Welcome to Mietubl Online Marketing System</title>
+    <title>Mietubl Marketing System</title>
     <style>
-        /* 页面基础样式 */
         body {
-            font-family: 'Arial', sans-serif;
+            font-family: 'Segoe UI', sans-serif;
             margin: 0;
             padding: 0;
-            height: 100vh;
-            background-color: #f0f0f0;
+            background: #f8f9fa;
+            color: #2c3e50;
+        }
+
+        nav {
+            background: #ffffff;
+            padding: 1rem 2rem;
+            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
             display: flex;
-            justify-content: center;
+            justify-content: space-between;
             align-items: center;
         }
 
-        /* 居中显示的容器 */
         .container {
+            max-width: 1200px;
+            margin: 2rem auto;
+            padding: 0 1rem;
+        }
+
+        .hero {
             text-align: center;
-            background-color: #ffffff;
-            padding: 30px;
+            padding: 4rem 0;
+        }
+
+        .features {
+            display: grid;
+            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+            gap: 2rem;
+            margin-top: 3rem;
+        }
+
+        .feature-card {
+            background: white;
+            padding: 2rem;
             border-radius: 10px;
-            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
         }
 
-        /* 欢迎文本样式 */
-        h1 {
-            font-size: 36px;
-            color: #333333;
-            margin-bottom: 10px;
+        .nav-links a {
+            color: #3498db;
+            text-decoration: none;
+            margin-left: 2rem;
+            font-weight: 500;
         }
 
-        /* 添加动画 */
-        .container h1 {
-            animation: fadeIn 1.5s ease-in-out;
+        h1 {
+            color: #2c3e50;
+            font-size: 2.5rem;
+            margin-bottom: 1rem;
         }
 
-        /* 动画效果 */
-        @keyframes fadeIn {
-            0% {
-                opacity: 0;
-                transform: translateY(-20px);
-            }
-            100% {
-                opacity: 1;
-                transform: translateY(0);
-            }
+        .icon {
+            font-size: 2rem;
+            color: #3498db;
+            margin-bottom: 1rem;
         }
     </style>
 </head>
 <body>
+<nav>
+    <h2>Mietubl Marketing System</h2>
+    <div class="nav-links">
+        <a href="/dist">Login</a>
+        <a href="privacy-policy.html" target="_blank">Privacy Policy</a>
+    </div>
+</nav>
+
 <div class="container">
-    <h1>Welcome to Mietubl Online Marketing System</h1>
+    <section class="hero">
+        <h1>Transform Your Digital Marketing</h1>
+        <p class="subtitle">Advanced analytics and campaign management for modern businesses</p>
+    </section>
+
+    <div class="features">
+        <div class="feature-card">
+            <div class="icon">📈</div>
+            <h3>Real-Time Analytics</h3>
+            <p>Monitor campaign performance with detailed metrics and interactive dashboards.</p>
+        </div>
+
+        <div class="feature-card">
+            <div class="icon">🎯</div>
+            <h3>Smart Targeting</h3>
+            <p>AI-powered audience segmentation for maximum campaign effectiveness.</p>
+        </div>
+
+        <div class="feature-card">
+            <div class="icon">🛠️</div>
+            <h3>Unified Platform</h3>
+            <p>Manage all your marketing channels from one integrated interface.</p>
+        </div>
+    </div>
 </div>
 </body>
 </html>