Add 3 files
Browse files- README.md +7 -5
- index.html +177 -19
- prompts.txt +1 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 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: old-ranch
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: red
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,177 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="pt-BR">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Old Ranch - Gastronomia e Bebidas</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
|
| 11 |
+
body {
|
| 12 |
+
font-family: 'Poppins', sans-serif;
|
| 13 |
+
background-color: #f8f4e9;
|
| 14 |
+
}
|
| 15 |
+
.menu-category {
|
| 16 |
+
transition: all 0.3s ease;
|
| 17 |
+
}
|
| 18 |
+
.menu-category:hover {
|
| 19 |
+
transform: translateY(-5px);
|
| 20 |
+
}
|
| 21 |
+
.price-tag {
|
| 22 |
+
background-color: #eab308;
|
| 23 |
+
color: white;
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="text-gray-800">
|
| 28 |
+
<div class="max-w-4xl mx-auto px-4 py-8">
|
| 29 |
+
<!-- Header -->
|
| 30 |
+
<header class="text-center mb-12">
|
| 31 |
+
<h1 class="text-5xl font-bold text-amber-900 mb-2">OLD RANCH</h1>
|
| 32 |
+
<p class="text-lg text-amber-700">Gastronomia & Bebidas • Desde 2024</p>
|
| 33 |
+
<div class="mt-6 bg-amber-100 p-4 rounded-lg">
|
| 34 |
+
<p class="font-medium"><i class="fas fa-map-marker-alt mr-2"></i> Assentamento Triunfo, Pontes e Lacerda - MT</p>
|
| 35 |
+
<p class="font-medium"><i class="fas fa-phone-alt mr-2"></i> (65) 99929-7686</p>
|
| 36 |
+
<p class="font-medium"><i class="fas fa-clock mr-2"></i> Terça a Domingo • 15:00 - 00:00</p>
|
| 37 |
+
</div>
|
| 38 |
+
</header>
|
| 39 |
+
|
| 40 |
+
<!-- Menu Sections -->
|
| 41 |
+
<div class="grid md:grid-cols-2 gap-8">
|
| 42 |
+
<!-- Bebidas -->
|
| 43 |
+
<div class="menu-category bg-white p-6 rounded-lg shadow-lg border-l-4 border-amber-500">
|
| 44 |
+
<h2 class="text-2xl font-bold text-amber-800 mb-4 flex items-center">
|
| 45 |
+
<i class="fas fa-glass-cheers mr-3"></i> Bebidas
|
| 46 |
+
</h2>
|
| 47 |
+
|
| 48 |
+
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Cervejas (Lata)</h3>
|
| 49 |
+
<ul class="space-y-2">
|
| 50 |
+
<li class="flex justify-between">
|
| 51 |
+
<span>Brahma/Amstel/Skol</span>
|
| 52 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 4,00</span>
|
| 53 |
+
</li>
|
| 54 |
+
<li class="flex justify-between">
|
| 55 |
+
<span>Original</span>
|
| 56 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 5,00</span>
|
| 57 |
+
</li>
|
| 58 |
+
<li class="flex justify-between">
|
| 59 |
+
<span>Heineken</span>
|
| 60 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 6,00</span>
|
| 61 |
+
</li>
|
| 62 |
+
</ul>
|
| 63 |
+
|
| 64 |
+
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Cervejas (600ml)</h3>
|
| 65 |
+
<ul class="space-y-2">
|
| 66 |
+
<li class="flex justify-between">
|
| 67 |
+
<span>Brahma/Skol</span>
|
| 68 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 12,00</span>
|
| 69 |
+
</li>
|
| 70 |
+
<li class="flex justify-between">
|
| 71 |
+
<span>Original</span>
|
| 72 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 14,00</span>
|
| 73 |
+
</li>
|
| 74 |
+
</ul>
|
| 75 |
+
|
| 76 |
+
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Heineken</h3>
|
| 77 |
+
<ul class="space-y-2">
|
| 78 |
+
<li class="flex justify-between">
|
| 79 |
+
<span>Long Neck</span>
|
| 80 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 12,00</span>
|
| 81 |
+
</li>
|
| 82 |
+
<li class="flex justify-between">
|
| 83 |
+
<span>Shot</span>
|
| 84 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 9,00</span>
|
| 85 |
+
</li>
|
| 86 |
+
</ul>
|
| 87 |
+
|
| 88 |
+
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Refrigerantes</h3>
|
| 89 |
+
<ul class="space-y-2">
|
| 90 |
+
<li class="flex justify-between">
|
| 91 |
+
<span>Latinha</span>
|
| 92 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 5,00</span>
|
| 93 |
+
</li>
|
| 94 |
+
<li class="flex justify-between">
|
| 95 |
+
<span>1L</span>
|
| 96 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 10,00</span>
|
| 97 |
+
</li>
|
| 98 |
+
<li class="flex justify-between">
|
| 99 |
+
<span>2L</span>
|
| 100 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 13,50</span>
|
| 101 |
+
</li>
|
| 102 |
+
</ul>
|
| 103 |
+
</div>
|
| 104 |
+
|
| 105 |
+
<!-- Porções -->
|
| 106 |
+
<div class="menu-category bg-white p-6 rounded-lg shadow-lg border-l-4 border-amber-500">
|
| 107 |
+
<h2 class="text-2xl font-bold text-amber-800 mb-4 flex items-center">
|
| 108 |
+
<i class="fas fa-utensils mr-3"></i> Porções
|
| 109 |
+
</h2>
|
| 110 |
+
|
| 111 |
+
<ul class="space-y-4">
|
| 112 |
+
<li>
|
| 113 |
+
<div class="flex justify-between items-baseline">
|
| 114 |
+
<span class="font-medium">Batata/Frango/Calabresa/Posta de Tabatinga</span>
|
| 115 |
+
</div>
|
| 116 |
+
<div class="flex justify-between mt-1">
|
| 117 |
+
<span class="text-sm">Pequena</span>
|
| 118 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 45,00</span>
|
| 119 |
+
</div>
|
| 120 |
+
<div class="flex justify-between mt-1">
|
| 121 |
+
<span class="text-sm">Grande</span>
|
| 122 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 55,00</span>
|
| 123 |
+
</div>
|
| 124 |
+
</li>
|
| 125 |
+
|
| 126 |
+
<li>
|
| 127 |
+
<div class="flex justify-between items-baseline">
|
| 128 |
+
<span class="font-medium">Ventrecha de Tabatinga</span>
|
| 129 |
+
</div>
|
| 130 |
+
<div class="flex justify-between mt-1">
|
| 131 |
+
<span class="text-sm">Pequena</span>
|
| 132 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 55,00</span>
|
| 133 |
+
</div>
|
| 134 |
+
<div class="flex justify-between mt-1">
|
| 135 |
+
<span class="text-sm">Grande</span>
|
| 136 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 65,00</span>
|
| 137 |
+
</div>
|
| 138 |
+
</li>
|
| 139 |
+
|
| 140 |
+
<li class="flex justify-between">
|
| 141 |
+
<span class="font-medium">Tábua de Frios</span>
|
| 142 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 80,00</span>
|
| 143 |
+
</li>
|
| 144 |
+
|
| 145 |
+
<li class="flex justify-between">
|
| 146 |
+
<span class="font-medium">Camarão</span>
|
| 147 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 100,00</span>
|
| 148 |
+
</li>
|
| 149 |
+
</ul>
|
| 150 |
+
|
| 151 |
+
<h3 class="text-lg font-semibold text-amber-700 mt-6 mb-2">Lanches</h3>
|
| 152 |
+
<ul class="space-y-2">
|
| 153 |
+
<li class="flex justify-between">
|
| 154 |
+
<span>X-Tudo (Acompanha batata frita)</span>
|
| 155 |
+
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 30,00</span>
|
| 156 |
+
</li>
|
| 157 |
+
</ul>
|
| 158 |
+
</div>
|
| 159 |
+
</div>
|
| 160 |
+
|
| 161 |
+
<!-- Call to Action -->
|
| 162 |
+
<div class="mt-12 text-center bg-amber-800 text-white p-6 rounded-lg">
|
| 163 |
+
<h3 class="text-2xl font-bold mb-3">Venha conhecer o Old Ranch!</h3>
|
| 164 |
+
<p class="mb-4">Ambiente aconchegante para curtir com amigos e família</p>
|
| 165 |
+
<a href="tel:+5565999297686" class="inline-block bg-white text-amber-800 font-bold py-2 px-6 rounded-full hover:bg-amber-100 transition">
|
| 166 |
+
<i class="fas fa-phone-alt mr-2"></i> Faça seu pedido
|
| 167 |
+
</a>
|
| 168 |
+
</div>
|
| 169 |
+
|
| 170 |
+
<!-- Footer -->
|
| 171 |
+
<footer class="mt-12 text-center text-sm text-gray-600">
|
| 172 |
+
<p>© 2024 Old Ranch - Todos os direitos reservados</p>
|
| 173 |
+
<p class="mt-1">Assentamento Triunfo, Pontes e Lacerda - MT</p>
|
| 174 |
+
</footer>
|
| 175 |
+
</div>
|
| 176 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=kayqueJc/old-ranch" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 177 |
+
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Crie a melhor publicidade de um restaurante chamado “Old Ranch” que foi criado em 2024. Coloque que servimos bebidas no geral. Sendo os seguintes preços: Latas de Brahma, amstel e skol 4,00. lata de Heiniken 6,00 e de original 5,00. Latinhas de refrigerante, todas por 5,00. Tambem servimos porções de Batata, Frango, calabresa e posta de tabatinga, sendo essas no valor de 45 porção pequena e 55 porção grande. Temos também a tábua de frios no valor de 80,00. Ventrecha de tabatinga no valor de 55,00 a pequena e 65 a grande. Temos também Camarão no valor de 100,00. Vendemos também Lanche, X-tudo por 30,00 que vem acompanhado de batatas fritas. Os refrigerantes de 2L no geral é 13,50 e de 1L por 10,00. As cervejas 600ml Brahma e skol são 12,00 e a original 14,00. Heiniken Long Neck 12,00 e Heiniken Shot 9,00. Não coloque os preços em vermelho dentro de uma bola, nao cabe e fique esteticamente feio.Estamos localizados em Pontes e Lacerda, Mato grosso - Assentamento Triunfo. Telefone para contato +5565999297686. Horário de atendimento Terça a domingo das 15:00 as 00:00. Por favor, crie bem detalhado e não crie uma história fake, não coloque localização no mapa, apenas o endereço, e nem coloque avaliações de pessoas fantasmas e nao põe imagens.
|