Kaprince commited on
Commit
43a7ed2
·
verified ·
1 Parent(s): 8e886ed

please edit this landing page to make it the best

Browse files
Files changed (2) hide show
  1. index.html +154 -18
  2. style.css +11 -22
index.html CHANGED
@@ -1,19 +1,155 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Lipia - Modern Digital Payments</title>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <style>
11
+ .hero-gradient {
12
+ background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
13
+ }
14
+ .feature-card:hover {
15
+ transform: translateY(-5px);
16
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
17
+ }
18
+ .transition-all {
19
+ transition: all 0.3s ease;
20
+ }
21
+ </style>
22
+ </head>
23
+ <body class="font-sans antialiased text-gray-800">
24
+ <!-- Navigation -->
25
+ <nav class="bg-white shadow-sm">
26
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
27
+ <div class="flex justify-between h-16">
28
+ <div class="flex items-center">
29
+ <div class="flex-shrink-0 flex items-center">
30
+ <i class="fas fa-wallet text-indigo-600 text-2xl mr-2"></i>
31
+ <span class="text-xl font-bold text-indigo-600">Lipia</span>
32
+ </div>
33
+ </div>
34
+ <div class="hidden sm:ml-6 sm:flex sm:items-center space-x-8">
35
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Features</a>
36
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Pricing</a>
37
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
38
+ <a href="#" class="text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Contact</a>
39
+ <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition-all">Get Started</button>
40
+ </div>
41
+ </div>
42
+ </div>
43
+ </nav>
44
+
45
+ <!-- Hero Section -->
46
+ <div class="hero-gradient text-white">
47
+ <div class="max-w-7xl mx-auto py-20 px-4 sm:px-6 lg:px-8">
48
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
49
+ <div>
50
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl mb-6">
51
+ Seamless Payments for the Digital Age
52
+ </h1>
53
+ <p class="text-xl text-indigo-100 max-w-3xl mb-8">
54
+ Lipia offers fast, secure, and reliable payment solutions for businesses and individuals.
55
+ </p>
56
+ <div class="flex space-x-4">
57
+ <button class="bg-white text-indigo-600 px-6 py-3 rounded-md text-lg font-medium hover:bg-gray-100 transition-all">Get Started</button>
58
+ <button class="border-2 border-white text-white px-6 py-3 rounded-md text-lg font-medium hover:bg-white hover:text-indigo-600 transition-all">Learn More</button>
59
+ </div>
60
+ </div>
61
+ <div class="mt-12 lg:mt-0">
62
+ <img src="http://static.photos/finance/640x360/1" alt="Digital Payments" class="rounded-lg shadow-xl">
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </div>
67
+
68
+ <!-- Features Section -->
69
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
70
+ <div class="text-center mb-16">
71
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl mb-4">Why Choose Lipia?</h2>
72
+ <p class="text-xl text-gray-500 max-w-3xl mx-auto">Our platform provides everything you need for modern digital transactions</p>
73
+ </div>
74
+
75
+ <div class="grid md:grid-cols-3 gap-8">
76
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md transition-all">
77
+ <div class="bg-indigo-50 w-16 h-16 rounded-full flex items-center justify-center mb-6">
78
+ <i class="fas fa-bolt text-indigo-600 text-2xl"></i>
79
+ </div>
80
+ <h3 class="text-xl font-bold mb-3">Lightning Fast</h3>
81
+ <p class="text-gray-600">Process payments in seconds with our optimized transaction network.</p>
82
+ </div>
83
+
84
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md transition-all">
85
+ <div class="bg-indigo-50 w-16 h-16 rounded-full flex items-center justify-center mb-6">
86
+ <i class="fas fa-shield-alt text-indigo-600 text-2xl"></i>
87
+ </div>
88
+ <h3 class="text-xl font-bold mb-3">Bank-Level Security</h3>
89
+ <p class="text-gray-600">Your transactions are protected with enterprise-grade encryption.</p>
90
+ </div>
91
+
92
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md transition-all">
93
+ <div class="bg-indigo-50 w-16 h-16 rounded-full flex items-center justify-center mb-6">
94
+ <i class="fas fa-globe text-indigo-600 text-2xl"></i>
95
+ </div>
96
+ <h3 class="text-xl font-bold mb-3">Global Reach</h3>
97
+ <p class="text-gray-600">Accept payments from anywhere in the world with minimal fees.</p>
98
+ </div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- CTA Section -->
103
+ <div class="bg-gray-50">
104
+ <div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8 text-center">
105
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl mb-6">Ready to transform your payment experience?</h2>
106
+ <p class="text-xl text-gray-500 max-w-3xl mx-auto mb-8">Join thousands of businesses using Lipia for their daily transactions.</p>
107
+ <button class="bg-indigo-600 text-white px-8 py-4 rounded-md text-lg font-medium hover:bg-indigo-700 transition-all">Sign Up Now - It's Free</button>
108
+ </div>
109
+ </div>
110
+
111
+ <!-- Footer -->
112
+ <footer class="bg-gray-800 text-white">
113
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
114
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
115
+ <div>
116
+ <h3 class="text-lg font-semibold mb-4">Product</h3>
117
+ <ul class="space-y-2">
118
+ <li><a href="#" class="text-gray-300 hover:text-white">Features</a></li>
119
+ <li><a href="#" class="text-gray-300 hover:text-white">Pricing</a></li>
120
+ <li><a href="#" class="text-gray-300 hover:text-white">API</a></li>
121
+ </ul>
122
+ </div>
123
+ <div>
124
+ <h3 class="text-lg font-semibold mb-4">Company</h3>
125
+ <ul class="space-y-2">
126
+ <li><a href="#" class="text-gray-300 hover:text-white">About</a></li>
127
+ <li><a href="#" class="text-gray-300 hover:text-white">Careers</a></li>
128
+ <li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li>
129
+ </ul>
130
+ </div>
131
+ <div>
132
+ <h3 class="text-lg font-semibold mb-4">Legal</h3>
133
+ <ul class="space-y-2">
134
+ <li><a href="#" class="text-gray-300 hover:text-white">Privacy</a></li>
135
+ <li><a href="#" class="text-gray-300 hover:text-white">Terms</a></li>
136
+ <li><a href="#" class="text-gray-300 hover:text-white">Security</a></li>
137
+ </ul>
138
+ </div>
139
+ <div>
140
+ <h3 class="text-lg font-semibold mb-4">Connect</h3>
141
+ <div class="flex space-x-4">
142
+ <a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-twitter"></i></a>
143
+ <a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-facebook"></i></a>
144
+ <a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-linkedin"></i></a>
145
+ <a href="#" class="text-gray-300 hover:text-white"><i class="fab fa-instagram"></i></a>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ <div class="mt-12 pt-8 border-t border-gray-700 text-center text-gray-400">
150
+ <p>&copy; 2023 Lipia. All rights reserved.</p>
151
+ </div>
152
+ </div>
153
+ </footer>
154
+ </body>
155
  </html>
style.css CHANGED
@@ -1,28 +1,17 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
 
1
+ ```css
2
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
 
 
3
 
4
+ body {
5
+ font-family: 'Inter', sans-serif;
 
 
 
 
 
 
 
 
6
  }
7
 
8
+ /* Animation classes */
9
+ @keyframes fadeIn {
10
+ from { opacity: 0; }
11
+ to { opacity: 1; }
 
 
12
  }
13
 
14
+ .animate-fade-in {
15
+ animation: fadeIn 0.5s ease-out forwards;
16
  }
17
+ ```