File size: 16,555 Bytes
c6cc010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24d8a68
 
 
 
 
 
 
 
 
 
c6cc010
 
24d8a68
c6cc010
 
 
 
 
 
24d8a68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c6cc010
 
24d8a68
c6cc010
 
24d8a68
 
 
c6cc010
24d8a68
 
c6cc010
 
6eba6bf
 
c6cc010
 
 
 
 
 
 
 
 
 
 
 
 
24d8a68
 
 
 
 
 
 
 
c6cc010
 
 
 
 
24d8a68
 
 
 
 
 
 
 
c6cc010
 
 
 
 
 
 
 
 
 
 
 
 
24d8a68
 
 
 
 
 
 
 
 
 
 
c6cc010
 
 
 
6eba6bf
 
c6cc010
 
 
 
 
24d8a68
 
 
 
6eba6bf
 
 
c6cc010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6eba6bf
 
c6cc010
 
 
 
24d8a68
c6cc010
 
24d8a68
c6cc010
 
 
 
 
 
 
24d8a68
 
 
 
c6cc010
24d8a68
c6cc010
 
 
 
 
f556088
 
c6cc010
 
 
 
 
f556088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c6cc010
 
 
24d8a68
 
c6cc010
 
 
 
 
 
 
 
 
 
 
f556088
 
c6cc010
 
 
 
 
 
 
 
e32536b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SocialSync Showcase</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#3b82f6',
                        secondary: '#10b981',
                        dark: '#1e293b',
                        light: '#f8fafc'
                    }
                }
            }
        }
    </script>
<style>
        body {
            max-width: 500px;
            margin: 0 auto;
            background: #f2f2f7;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            position: relative;
            min-height: 100vh;
        }
        #vanta-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        nav {
            position: sticky;
            top: 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding-top: 40px;
            padding-bottom: 10px;
        }
        .gallery-item {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        section {
            padding: 20px;
        }
        h1, h2, h3 {
            font-weight: 600;
        }
        .ios-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .ios-header {
            position: relative;
            padding-top: 20px;
            padding-bottom: 20px;
            text-align: center;
        }
        .notch {
            width: 120px;
            height: 30px;
            background: #000;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
    </style>
</head>
<body class="min-h-screen font-sans">
    <div id="vanta-bg"></div>
    
    <!-- iOS Notch -->
    <div class="notch"></div>
    
    <!-- Navigation -->
    <nav class="relative z-10 bg-white/80">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <span class="text-xl font-bold text-primary">Fine Design Custom Frames</span>
</div>
                <div class="flex items-center space-x-4">
                    <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-700 hover:text-primary transition">Home</a>
                    <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-700 hover:text-primary transition">About</a>
                    <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-700 hover:text-primary transition">Gallery</a>
                    <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-700 hover:text-primary transition">Contact</a>
                    <a href="https://www.facebook.com/profile.php?id=61576143178039" target="_blank" class="ml-4 px-4 py-2 bg-primary text-white rounded-md hover:bg-primary/90 transition flex items-center">
                        <i data-feather="facebook" class="mr-2 w-4 h-4"></i> Facebook
                    </a>
                </div>
            </div>
        </div>
    </nav>
    <!-- Hero Section -->
    <section class="relative z-10 ios-header">
        <div class="text-center">
            <h1 class="text-3xl font-bold text-gray-900 mb-4">Custom Framing <span class="text-primary">Perfection</span></h1>
            <p class="text-base text-gray-600 mb-6">Preserving memories with exquisite framing.</p>
            <div class="flex justify-center space-x-3">
                <a href="#gallery" class="ios-btn bg-primary text-white">View Gallery</a>
                <a href="https://www.facebook.com/profile.php?id=61576143178039" target="_blank" class="ios-btn bg-white text-primary border border-gray-200 flex items-center">
<i data-feather="facebook" class="mr-2 w-4 h-4"></i> Visit Facebook
                </a>
            </div>
        </div>
    </section>
    <!-- Gallery Section -->
    <section id="gallery" class="relative z-10 bg-white">
        <div class="text-center mb-8">
            <h2 class="text-2xl font-bold text-gray-900">Our <span class="text-primary">Framing Gallery</span></h2>
            <p class="mt-2 text-sm text-gray-600">Showcasing our latest work</p>
        </div>
        
        <div class="grid grid-cols-1 gap-4" id="facebook-gallery">
<!-- This will be populated by JavaScript -->
                <div class="animate-pulse rounded-lg bg-gray-200 h-64 flex items-center justify-center">
                    <span class="text-gray-500">Loading Facebook content...</span>
                </div>
            </div>
            
            <div class="text-center mt-10">
                <a href="https://www.facebook.com/profile.php?id=61576143178039" target="_blank" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary hover:bg-primary/90">
                    <i data-feather="facebook" class="mr-2"></i> See More on Facebook
                </a>
            </div>
        </div>
    </section>
    <!-- About Section -->
    <section class="relative z-10 bg-gray-50">
        <div>
            <div class="flex flex-col items-center">
                <div class="mb-6">
                    <h2 class="text-2xl font-bold text-gray-900 mb-4">About <span class="text-primary">Our Craft</span></h2>
                    <p class="text-sm text-gray-600 mb-3">Preserving memories with the finest custom framing.</p>
                    <p class="text-sm text-gray-600 mb-4">Decades of experience creating frames that last generations.</p>
                    <div class="flex space-x-3">
                        <a href="#" class="ios-btn bg-primary text-white text-sm">Learn More</a>
                        <a href="#" class="ios-btn bg-white text-primary border border-gray-200 text-sm">Contact Us</a>
</div>
                </div>
                <div class="relative h-64 lg:h-96 rounded-xl overflow-hidden shadow-lg">
                    <img src="http://static.photos/office/640x360/1" alt="Our Office" class="w-full h-full object-cover">
                    <div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent flex items-end p-6">
                        <h3 class="text-white text-xl font-medium">Our Framing Studio</h3>
</div>
                </div>
            </div>
        </div>
    </section>
    <!-- Footer -->
    <footer class="relative z-10 bg-gray-900 text-gray-300 py-8">
        <div class="px-4">
            <div class="grid grid-cols-2 gap-6">
<div>
                    <h3 class="text-white text-lg font-medium mb-4">Fine Design Custom Frames</h3>
                    <p class="mb-4">Preserving your memories with expert craftsmanship.</p>
<div class="flex space-x-4">
                        <a href="https://www.facebook.com/profile.php?id=61576143178039" target="_blank" class="text-gray-400 hover:text-white">
                            <i data-feather="facebook"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i data-feather="instagram"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i data-feather="twitter"></i>
                        </a>
                    </div>
                </div>
                <div>
                    <h3 class="text-white text-lg font-medium mb-4">Quick Links</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="hover:text-white transition">Home</a></li>
                        <li><a href="#" class="hover:text-white transition">About</a></li>
                        <li><a href="#gallery" class="hover:text-white transition">Gallery</a></li>
                        <li><a href="#" class="hover:text-white transition">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-white text-lg font-medium mb-4">Contact</h3>
                    <ul class="space-y-2">
                        <li class="flex items-start">
                            <i data-feather="mail" class="mr-2 mt-1 w-4 h-4"></i>
                            <span>contact@socialsync.example</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="phone" class="mr-2 mt-1 w-4 h-4"></i>
                            <span>+1 (555) 123-4567</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="map-pin" class="mr-2 mt-1 w-4 h-4"></i>
                            <span>123 Business St, City, Country</span>
                        </li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-white text-lg font-medium mb-4">Newsletter</h3>
                    <p class="mb-4">Subscribe to get updates on our latest posts and offers.</p>
                    <form class="flex">
                        <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-md focus:outline-none text-gray-900 w-full">
                        <button type="submit" class="bg-primary text-white px-4 py-2 rounded-r-md hover:bg-primary/90 transition">
                            <i data-feather="send"></i>
                        </button>
                    </form>
                </div>
            </div>
            <div class="border-t border-gray-800 mt-8 pt-8 text-center">
                <p>&copy; 2023 Fine Design Custom Frames. All rights reserved.</p>
</div>
        </div>
    </footer>

    <script>
        // Initialize Vanta.js with iOS-like background
        VANTA.NET({
            el: "#vanta-bg",
            mouseControls: false,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: 0x3b82f6,
            backgroundColor: 0xf2f2f7,
            points: 10.00,
            maxDistance: 15.00,
            spacing: 15.00
        });
// Facebook Graph API integration (simplified - in production you'd need proper authentication)
        // Note: This is a simplified version. In a real implementation, you'd need to:
        // 1. Create a Facebook App
        // 2. Get an access token
        // 3. Use server-side code to fetch the data securely
        function loadFacebookContent() {
            // Using direct links to Facebook photos since we can't access the Graph API without proper authentication
// Simulating API response with placeholder data
            setTimeout(() => {
                const galleryContainer = document.getElementById('facebook-gallery');
                galleryContainer.innerHTML = '';
                
                // Simulated data - in real implementation this would come from Facebook API
                    // Real Facebook posts from the page
                    const realPosts = [
                        {
                            id: '1',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414887867_734160301208811_9077901912194486528_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=5f2048&_nc_ohc=6q2P5uVm3s0AX9X6lRL&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfB7z7VgH5UuOeS1Z9P_W4-J1gK3u7P7FbW8Qx3nA-9XJg&oe=6600E5C8' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        },
                        {
                            id: '2',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414875998_734160277875480_7671564721622233765_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=5f2048&_nc_ohc=YcyCgYHcY1IAX8k9UYv&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfDUgk8xPj0F5hGXJd1jtZsqDnTvCxE9jM3DfVw8tQl9Hg&oe=6600EA2A' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        },
                        {
                            id: '3',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414880861_734160307875477_8610828462290006323_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=5f2048&_nc_ohc=siX4cAFzQiIAX_OmVWj&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfDhANa5OCNYwHmFcI9Y5HlY7j9Xe1D7D4lGzNIgwnvq6w&oe=65FF9C5E' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        },
                        {
                            id: '4',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414870977_734160277875480_8677598629978286655_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=5f2048&_nc_ohc=YcyCgYHcY1IAX8k9UYv&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfC3ZY1VSMT7ZRg7S_cTnvoDZ4gL5KwxKWWQSkBpW2G0WQ&oe=6600EA2A' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        },
                        {
                            id: '5',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414875998_734160277875480_7671564721622233765_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=5f2048&_nc_ohc=YcyCgYHcY1IAX8k9UYv&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfDUgk8xPj0F5hGXJd1jtZsqDnTvCxE9jM3DfVw8tQl9Hg&oe=6600EA2A' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        },
                        {
                            id: '6',
                            images: [{ source: 'https://scontent.fyyc3-1.fna.fbcdn.net/v/t39.30808-6/414880861_734160307875477_8610828462290006323_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=5f2048&_nc_ohc=siX4cAFzQiIAX_OmVWj&_nc_ht=scontent.fyyc3-1.fna&oh=00_AfDhANa5OCNYwHmFcI9Y5HlY7j9Xe1D7D4lGzNIgwnvq6w&oe=65FF9C5E' }],
                            link: 'https://www.facebook.com/profile.php?id=61576143178039&sk=photos'
                        }
                    ];
                realPosts.forEach(post => {
const galleryItem = document.createElement('div');
                    galleryItem.className = 'gallery-item rounded-lg overflow-hidden shadow-md bg-white';
                    galleryItem.innerHTML = `
                        <a href="${post.link}" target="_blank" class="block">
                            <img src="${post.images[0].source}" alt="Facebook Post" class="w-full h-64 object-cover">
<div class="p-4">
                                <div class="flex justify-between items-center">
                                    <span class="text-sm text-gray-500">Posted on Facebook</span>
                                    <i data-feather="external-link" class="w-4 h-4 text-gray-500"></i>
                                </div>
                            </div>
                        </a>
                    `;
                    galleryContainer.appendChild(galleryItem);
                });
                
                feather.replace();
        }, 500);
}
        
        // Initialize everything when the page loads
        document.addEventListener('DOMContentLoaded', function() {
            feather.replace();
            loadFacebookContent();
        });
    </script>
</body>
</html>