M0zzi commited on
Commit
88936f7
·
verified ·
1 Parent(s): 4d53e0c

Create an app landing page with hero section showing app screenshots, key features with icons, how it works steps, pricing plans, user testimonials, app store download buttons, video demo, and early access signup.

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +136 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Applaunch Fiesta
3
- emoji: 🐠
4
- colorFrom: gray
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: AppLaunch Fiesta 🚀
3
+ colorFrom: pink
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,136 @@
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
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AppLaunch Fiesta - Your Next Favorite App</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="components/navbar.js"></script>
12
+ <script src="components/footer.js"></script>
13
+ </head>
14
+ <body class="bg-gray-50">
15
+ <custom-navbar></custom-navbar>
16
+
17
+ <!-- Hero Section -->
18
+ <section class="py-20 px-4 md:px-10 lg:px-20 bg-gradient-to-br from-indigo-500 to-purple-600 text-white">
19
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
20
+ <div class="md:w-1/2 mb-10 md:mb-0">
21
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-6">Transform Your Productivity</h1>
22
+ <p class="text-xl mb-8 opacity-90">The ultimate all-in-one app that helps you stay focused, organized, and efficient.</p>
23
+ <div class="flex flex-col sm:flex-row gap-4">
24
+ <a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-semibold flex items-center justify-center gap-2 hover:bg-gray-100 transition">
25
+ <i data-feather="download"></i> App Store
26
+ </a>
27
+ <a href="#" class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-lg font-semibold flex items-center justify-center gap-2 hover:bg-white hover:text-indigo-600 transition">
28
+ <i data-feather="play"></i> Watch Demo
29
+ </a>
30
+ </div>
31
+ </div>
32
+ <div class="md:w-1/2 relative">
33
+ <div class="relative max-w-md mx-auto">
34
+ <img src="http://static.photos/technology/640x360/42" alt="App Screenshot" class="rounded-xl shadow-2xl z-10 relative">
35
+ <div class="absolute -bottom-5 -right-5 bg-white w-40 h-40 rounded-xl shadow-lg z-0"></div>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </section>
40
+
41
+ <!-- Features Section -->
42
+ <section class="py-20 px-4 md:px-10 lg:px-20 bg-white">
43
+ <div class="container mx-auto">
44
+ <div class="text-center mb-16">
45
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">What Makes Us Special</h2>
46
+ <p class="text-gray-600 max-w-2xl mx-auto">Discover features designed to make your life easier and more productive</p>
47
+ </div>
48
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
49
+ <!-- Feature 1 -->
50
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition">
51
+ <div class="w-14 h-14 bg-indigo-100 rounded-lg mb-6 flex items-center justify-center">
52
+ <i data-feather="zap" class="text-indigo-600 w-6 h-6"></i>
53
+ </div>
54
+ <h3 class="text-xl font-semibold mb-3">Lightning Fast</h3>
55
+ <p class="text-gray-600">Optimized for speed so you can get things done without waiting.</p>
56
+ </div>
57
+ <!-- Feature 2 -->
58
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition">
59
+ <div class="w-14 h-14 bg-purple-100 rounded-lg mb-6 flex items-center justify-center">
60
+ <i data-feather="lock" class="text-purple-600 w-6 h-6"></i>
61
+ </div>
62
+ <h3 class="text-xl font-semibold mb-3">Secure & Private</h3>
63
+ <p class="text-gray-600">Your data is always protected with end-to-end encryption.</p>
64
+ </div>
65
+ <!-- Feature 3 -->
66
+ <div class="bg-gray-50 p-8 rounded-xl hover:shadow-lg transition">
67
+ <div class="w-14 h-14 bg-green-100 rounded-lg mb-6 flex items-center justify-center">
68
+ <i data-feather="refresh-cw" class="text-green-600 w-6 h-6"></i>
69
+ </div>
70
+ <h3 class="text-xl font-semibold mb-3">Auto Sync</h3>
71
+ <p class="text-gray-600">All your devices stay in perfect harmony with real-time sync.</p>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </section>
76
+
77
+ <!-- How It Works -->
78
+ <section class="py-20 px-4 md:px-10 lg:px-20 bg-gray-50">
79
+ <div class="container mx-auto">
80
+ <div class="text-center mb-16">
81
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">How It Works</h2>
82
+ <p class="text-gray-600 max-w-2xl mx-auto">Get set up and productive in minutes</p>
83
+ </div>
84
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
85
+ <!-- Step 1 -->
86
+ <div class="flex flex-col items-center text-center">
87
+ <div class="w-16 h-16 bg-indigo-600 text-white rounded-full flex items-center justify-center mb-4 text-xl font-bold">1</div>
88
+ <h3 class="text-xl font-semibold mb-3">Download & Install</h3>
89
+ <p class="text-gray-600">Get the app from your favorite app store and install in seconds.</p>
90
+ </div>
91
+ <!-- Step 2 -->
92
+ <div class="flex flex-col items-center text-center">
93
+ <div class="w-16 h-16 bg-indigo-600 text-white rounded-full flex items-center justify-center mb-4 text-xl font-bold">2</div>
94
+ <h3 class="text-xl font-semibold mb-3">Create Account</h3>
95
+ <p class="text-gray-600">Sign up with email or social accounts in less than a minute.</p>
96
+ </div>
97
+ <!-- Step 3 -->
98
+ <div class="flex flex-col items-center text-center">
99
+ <div class="w-16 h-16 bg-indigo-600 text-white rounded-full flex items-center justify-center mb-4 text-xl font-bold">3</div>
100
+ <h3 class="text-xl font-semibold mb-3">Start Using</h3>
101
+ <p class="text-gray-600">Enjoy all the features right away with our intuitive interface.</p>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </section>
106
+
107
+ <!-- Pricing -->
108
+ <section class="py-20 px-4 md:px-10 lg:px-20 bg-white">
109
+ <div class="container mx-auto">
110
+ <div class="text-center mb-16">
111
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Simple Pricing</h2>
112
+ <p class="text-gray-600 max-w-2xl mx-auto">Choose the plan that fits your needs</p>
113
+ </div>
114
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
115
+ <!-- Free Plan -->
116
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition">
117
+ <h3 class="text-xl font-semibold mb-4">Free</h3>
118
+ <div class="text-4xl font-bold mb-6">$0<span class="text-lg text-gray-500 font-normal">/month</span></div>
119
+ <ul class="space-y-3 mb-8">
120
+ <li class="flex items-center text-gray-700">
121
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
122
+ Basic features
123
+ </li>
124
+ <li class="flex items-center text-gray-700">
125
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
126
+ 1GB storage
127
+ </li>
128
+ <li class="flex items-center text-gray-500">
129
+ <i data-feather="x" class="text-gray-400 mr-2 w-4 h-4"></i>
130
+ Advanced analytics
131
+ </li>
132
+ </ul>
133
+ <button class="w-full py-3 border-2 border-indigo-600 text-indigo-600 rounded-lg font-semibold
134
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
135
+ </body>
136
+ </html>