lucacadalora commited on
Commit
6df5ca8
Β·
verified Β·
1 Parent(s): 5bdad53

buatkan website pecel lele

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +172 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pecel Lele Delight
3
- emoji: 🐨
4
- colorFrom: green
5
- colorTo: indigo
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: Pecel Lele Delight πŸ—
3
+ colorFrom: blue
4
+ colorTo: red
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,172 @@
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>Pecel Lele Delight</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
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
12
+ </head>
13
+ <body class="font-poppins bg-yellow-50">
14
+ <custom-navbar></custom-navbar>
15
+
16
+ <main class="container mx-auto px-4 py-8">
17
+ <!-- Hero Section -->
18
+ <section class="hero bg-gradient-to-r from-yellow-400 to-yellow-600 rounded-2xl p-8 md:p-12 mb-12 text-white">
19
+ <div class="max-w-2xl">
20
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Authentic Pecel Lele</h1>
21
+ <p class="text-xl mb-6">Crispy fried catfish served with spicy sambal and fresh vegetables</p>
22
+ <a href="#menu" class="bg-white text-yellow-600 px-6 py-3 rounded-full font-medium hover:bg-yellow-100 transition duration-300 inline-block">Explore Menu</a>
23
+ </div>
24
+ </section>
25
+
26
+ <!-- Featured Menu -->
27
+ <section id="menu" class="mb-16">
28
+ <h2 class="text-3xl font-bold mb-8 text-center">Our Signature Dishes</h2>
29
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
30
+ <!-- Menu Item 1 -->
31
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition duration-300">
32
+ <img src="http://static.photos/food/640x360/1" alt="Pecel Lele" class="w-full h-48 object-cover">
33
+ <div class="p-6">
34
+ <h3 class="text-xl font-bold mb-2">Classic Pecel Lele</h3>
35
+ <p class="text-gray-600 mb-4">Crispy fried catfish with traditional sambal and fresh vegetables</p>
36
+ <div class="flex justify-between items-center">
37
+ <span class="text-yellow-600 font-bold text-lg">Rp 25,000</span>
38
+ <button class="bg-yellow-500 text-white px-4 py-2 rounded-full hover:bg-yellow-600 transition duration-300">Order Now</button>
39
+ </div>
40
+ </div>
41
+ </div>
42
+
43
+ <!-- Menu Item 2 -->
44
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition duration-300">
45
+ <img src="http://static.photos/food/640x360/2" alt="Pecel Lele" class="w-full h-48 object-cover">
46
+ <div class="p-6">
47
+ <h3 class="text-xl font-bold mb-2">Pecel Lele Extra Spicy</h3>
48
+ <p class="text-gray-600 mb-4">For those who love extra kick in their meal</p>
49
+ <div class="flex justify-between items-center">
50
+ <span class="text-yellow-600 font-bold text-lg">Rp 28,000</span>
51
+ <button class="bg-yellow-500 text-white px-4 py-2 rounded-full hover:bg-yellow-600 transition duration-300">Order Now</button>
52
+ </div>
53
+ </div>
54
+ </div>
55
+
56
+ <!-- Menu Item 3 -->
57
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden hover:shadow-xl transition duration-300">
58
+ <img src="http://static.photos/food/640x360/3" alt="Pecel Lele" class="w-full h-48 object-cover">
59
+ <div class="p-6">
60
+ <h3 class="text-xl font-bold mb-2">Pecel Lele Combo</h3>
61
+ <p class="text-gray-600 mb-4">Complete meal with rice, tempe, and tahu</p>
62
+ <div class="flex justify-between items-center">
63
+ <span class="text-yellow-600 font-bold text-lg">Rp 35,000</span>
64
+ <button class="bg-yellow-500 text-white px-4 py-2 rounded-full hover:bg-yellow-600 transition duration-300">Order Now</button>
65
+ </div>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </section>
70
+
71
+ <!-- About Section -->
72
+ <section class="bg-white rounded-xl shadow-lg p-8 mb-16">
73
+ <div class="flex flex-col md:flex-row items-center gap-8">
74
+ <div class="md:w-1/2">
75
+ <img src="http://static.photos/restaurant/640x360/1" alt="Our Restaurant" class="rounded-lg w-full">
76
+ </div>
77
+ <div class="md:w-1/2">
78
+ <h2 class="text-3xl font-bold mb-4">Our Story</h2>
79
+ <p class="text-gray-600 mb-4">Since 2010, we've been serving authentic Pecel Lele made with traditional recipes passed down through generations.</p>
80
+ <p class="text-gray-600 mb-6">We source our catfish from local farmers and prepare everything fresh daily to ensure the best quality and taste.</p>
81
+ <a href="#" class="text-yellow-600 font-medium hover:underline">Learn more about us β†’</a>
82
+ </div>
83
+ </div>
84
+ </section>
85
+
86
+ <!-- Testimonials -->
87
+ <section class="mb-16">
88
+ <h2 class="text-3xl font-bold mb-8 text-center">What Our Customers Say</h2>
89
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
90
+ <!-- Testimonial 1 -->
91
+ <div class="bg-white p-6 rounded-xl shadow-md">
92
+ <div class="flex items-center mb-4">
93
+ <div class="w-12 h-12 rounded-full bg-gray-200 overflow-hidden mr-4">
94
+ <img src="http://static.photos/people/200x200/1" alt="Customer" class="w-full h-full object-cover">
95
+ </div>
96
+ <div>
97
+ <h4 class="font-bold">Budi Santoso</h4>
98
+ <div class="flex text-yellow-400">
99
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
100
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
101
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
102
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
103
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ <p class="text-gray-600">"The best pecel lele in town! The sambal is perfectly spicy and the fish is always crispy."</p>
108
+ </div>
109
+
110
+ <!-- Testimonial 2 -->
111
+ <div class="bg-white p-6 rounded-xl shadow-md">
112
+ <div class="flex items-center mb-4">
113
+ <div class="w-12 h-12 rounded-full bg-gray-200 overflow-hidden mr-4">
114
+ <img src="http://static.photos/people/200x200/2" alt="Customer" class="w-full h-full object-cover">
115
+ </div>
116
+ <div>
117
+ <h4 class="font-bold">Ani Wijaya</h4>
118
+ <div class="flex text-yellow-400">
119
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
120
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
121
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
122
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
123
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ <p class="text-gray-600">"I come here every weekend. The combo meal is my favorite - great value for money!"</p>
128
+ </div>
129
+
130
+ <!-- Testimonial 3 -->
131
+ <div class="bg-white p-6 rounded-xl shadow-md">
132
+ <div class="flex items-center mb-4">
133
+ <div class="w-12 h-12 rounded-full bg-gray-200 overflow-hidden mr-4">
134
+ <img src="http://static.photos/people/200x200/3" alt="Customer" class="w-full h-full object-cover">
135
+ </div>
136
+ <div>
137
+ <h4 class="font-bold">Rudi Hartono</h4>
138
+ <div class="flex text-yellow-400">
139
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
140
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
141
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
142
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
143
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ <p class="text-gray-600">"Authentic taste reminds me of my hometown. The extra spicy version is amazing!"</p>
148
+ </div>
149
+ </div>
150
+ </section>
151
+
152
+ <!-- Contact Section -->
153
+ <section class="bg-white rounded-xl shadow-lg p-8">
154
+ <h2 class="text-3xl font-bold mb-6 text-center">Visit Us</h2>
155
+ <div class="flex flex-col md:flex-row gap-8">
156
+ <div class="md:w-1/2">
157
+ <div class="bg-gray-100 rounded-lg p-4 mb-6">
158
+ <div class="flex items-center mb-2">
159
+ <i data-feather="map-pin" class="w-5 h-5 mr-2 text-yellow-600"></i>
160
+ <h3 class="font-bold">Location</h3>
161
+ </div>
162
+ <p class="text-gray-600">Jl. Pecel Lele No. 123, Jakarta Selatan</p>
163
+ </div>
164
+ <div class="bg-gray-100 rounded-lg p-4 mb-6">
165
+ <div class="flex items-center mb-2">
166
+ <i data-feather="clock" class="w-5 h-5 mr-2 text-yellow-600"></i>
167
+ <h3 class="font-bold">Opening Hours</h3>
168
+ </div>
169
+ <p class="text-gray-600">Monday - Sunday:
170
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
171
+ </body>
172
+ </html>