AnthropicallyHuggingFaces commited on
Commit
115e309
·
verified ·
1 Parent(s): a861316

Create a real estate agency website with property search filters (location, price, bedrooms), featured listings grid with images, virtual tour options, mortgage calculator, agent profiles, neighborhood guides, and contact form.

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +180 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Stone Key Realty
3
- emoji: 🏢
4
- colorFrom: pink
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: Stone & Key Realty 🏰
3
+ colorFrom: red
4
+ colorTo: pink
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,180 @@
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" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Stone & Key Realty | Luxury Property Specialists</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>
12
+ tailwind.config = {
13
+ darkMode: 'class',
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ primary: {
18
+ DEFAULT: '#78716c',
19
+ 500: '#78716c',
20
+ },
21
+ secondary: {
22
+ DEFAULT: '#6366f1',
23
+ 500: '#6366f1',
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ </script>
30
+ <script src="components/navbar.js"></script>
31
+ <script src="components/property-card.js"></script>
32
+ <script src="components/footer.js"></script>
33
+ </head>
34
+ <body class="bg-stone-900 text-stone-100">
35
+ <custom-navbar></custom-navbar>
36
+
37
+ <!-- Hero Section -->
38
+ <section class="relative h-screen flex items-center justify-center bg-gradient-to-b from-stone-800 to-stone-900 overflow-hidden">
39
+ <div class="absolute inset-0 z-0">
40
+ <img src="http://static.photos/estate/1200x630/101" alt="Luxury Home" class="w-full h-full object-cover opacity-30">
41
+ </div>
42
+ <div class="relative z-10 text-center px-4 max-w-4xl mx-auto">
43
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 text-stone-100">Find Your Dream Home</h1>
44
+ <p class="text-xl md:text-2xl mb-8 text-stone-300">Discover premium properties in the most desirable neighborhoods</p>
45
+ <a href="#search" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-4 rounded-lg text-lg font-medium transition duration-300 inline-block">Start Exploring</a>
46
+ </div>
47
+ </section>
48
+
49
+ <!-- Property Search -->
50
+ <section id="search" class="py-16 px-4 bg-stone-800">
51
+ <div class="max-w-6xl mx-auto">
52
+ <h2 class="text-3xl font-bold mb-8 text-center">Property Search</h2>
53
+ <div class="bg-stone-700 rounded-xl p-6 shadow-xl">
54
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
55
+ <div>
56
+ <label class="block text-stone-300 mb-2">Location</label>
57
+ <select class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200">
58
+ <option>Any Location</option>
59
+ <option>Downtown</option>
60
+ <option>Waterfront</option>
61
+ <option>Suburbs</option>
62
+ <option>Countryside</option>
63
+ </select>
64
+ </div>
65
+ <div>
66
+ <label class="block text-stone-300 mb-2">Price Range</label>
67
+ <select class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200">
68
+ <option>Any Price</option>
69
+ <option>$150K - $300K</option>
70
+ <option>$300K - $500K</option>
71
+ <option>$500K - $1M</option>
72
+ <option>$1M+</option>
73
+ </select>
74
+ </div>
75
+ <div>
76
+ <label class="block text-stone-300 mb-2">Bedrooms</label>
77
+ <select class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200">
78
+ <option>Any</option>
79
+ <option>1+</option>
80
+ <option>2+</option>
81
+ <option>3+</option>
82
+ <option>4+</option>
83
+ </select>
84
+ </div>
85
+ <div>
86
+ <label class="block text-stone-300 mb-2">&nbsp;</label>
87
+ <button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white rounded-lg px-4 py-3 transition duration-300">
88
+ <i data-feather="search" class="inline mr-2"></i> Search
89
+ </button>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </section>
95
+
96
+ <!-- Featured Listings -->
97
+ <section class="py-16 px-4">
98
+ <div class="max-w-6xl mx-auto">
99
+ <h2 class="text-3xl font-bold mb-8 text-center">Featured Properties</h2>
100
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
101
+ <custom-property-card
102
+ image="http://static.photos/estate/640x360/1"
103
+ price="$750,000"
104
+ title="Modern Downtown Loft"
105
+ address="123 Urban Avenue"
106
+ beds="2"
107
+ baths="2"
108
+ sqft="1500"
109
+ vr="true">
110
+ </custom-property-card>
111
+
112
+ <custom-property-card
113
+ image="http://static.photos/estate/640x360/2"
114
+ price="$1,250,000"
115
+ title="Waterfront Villa"
116
+ address="456 Harbor Way"
117
+ beds="4"
118
+ baths="3.5"
119
+ sqft="3200"
120
+ vr="true">
121
+ </custom-property-card>
122
+
123
+ <custom-property-card
124
+ image="http://static.photos/estate/640x360/3"
125
+ price="$525,000"
126
+ title="Cozy Suburban Home"
127
+ address="789 Maple Street"
128
+ beds="3"
129
+ baths="2"
130
+ sqft="2100"
131
+ vr="false">
132
+ </custom-property-card>
133
+ </div>
134
+ <div class="text-center mt-12">
135
+ <a href="listings.html" class="inline-block bg-stone-700 hover:bg-stone-600 text-white px-6 py-3 rounded-lg transition duration-300">
136
+ View All Properties
137
+ </a>
138
+ </div>
139
+ </div>
140
+ </section>
141
+
142
+ <!-- Mortgage Calculator -->
143
+ <section class="py-16 px-4 bg-stone-800">
144
+ <div class="max-w-4xl mx-auto">
145
+ <h2 class="text-3xl font-bold mb-8 text-center">Mortgage Calculator</h2>
146
+ <div class="bg-stone-700 rounded-xl p-8 shadow-xl">
147
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
148
+ <div>
149
+ <div class="mb-4">
150
+ <label class="block text-stone-300 mb-2">Home Price ($)</label>
151
+ <input type="number" class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200" placeholder="500,000">
152
+ </div>
153
+ <div class="mb-4">
154
+ <label class="block text-stone-300 mb-2">Down Payment ($)</label>
155
+ <input type="number" class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200" placeholder="100,000">
156
+ </div>
157
+ <div class="mb-4">
158
+ <label class="block text-stone-300 mb-2">Loan Term (Years)</label>
159
+ <select class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200">
160
+ <option>30</option>
161
+ <option>20</option>
162
+ <option>15</option>
163
+ <option>10</option>
164
+ </select>
165
+ </div>
166
+ </div>
167
+ <div>
168
+ <div class="mb-4">
169
+ <label class="block text-stone-300 mb-2">Interest Rate (%)</label>
170
+ <input type="number" class="w-full bg-stone-600 border border-stone-500 rounded-lg px-4 py-2 text-stone-200" placeholder="4.5">
171
+ </div>
172
+ <div class="bg-stone-600 rounded-lg p-4">
173
+ <h4 class="text-lg font-semibold mb-2 text-indigo-300">Estimated Payment</h4>
174
+ <p class="text-4xl font-bold text-indigo-200 mb-2">$2,200</p>
175
+ <p class="text-stone-400">per month</p>
176
+ </div>
177
+ <button class="w-full mt-4 bg-indigo-
178
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
179
+ </body>
180
+ </html>