-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
923 lines (845 loc) · 30.2 KB
/
index.html
File metadata and controls
923 lines (845 loc) · 30.2 KB
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
<!--#!/usr/bin/env python3
import os
from http.server import HTTPServer, SimpleHTTPRequestHandler
# 1. Write out the HTML
html = """
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Viewscore.io – Occupant Satisfaction Prediction</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
/* Theme colors */
:root {
--color-primary: #0072E3;
--color-secondary: #787878;
--color-bg: #f9f9f9;
--color-text: #333;
--font-stack: 'Inter', sans-serif;
--transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; }
body {
margin: 0; padding: 0;
font-family: var(--font-stack);
color: var(--color-text);
background: var(--color-bg);
scroll-behavior: smooth;
}
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-secondary); }
/* Header */
header {
position: sticky; top: 0;
background: #fff;
border-bottom: 1px solid #ececec;
z-index: 100;
}
.nav-container {
max-width: 1200px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding: 16px;
}
.logo { font-size: 1.5rem; font-weight: 700; }
nav { display: flex; gap: 24px; }
nav a { font-weight: 600; font-size: 0.95rem; }
.hamburger {
display: none;
flex-direction: column;
gap: 4px;
cursor: pointer;
}
.hamburger span {
width: 24px; height: 3px;
background: var(--color-text);
transition: transform var(--transition);
}
/* Hero slider */
.hero {
padding: 20px 7%; /* no side gutters */
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw; /* break out of any container */
margin-right: -50vw;
width: 100vw;
max-width: 100vw;
overflow: auto;
/* 2) Lock the height to 16:9 of its full width */
aspect-ratio: 20 / 7;
height: auto;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 1);
z-index: 0;
}
.hero .slides {
position: relative; width: 100%; height: 100%;
}
.hero .slide {
position: absolute; inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1s ease-in-out;
height: 100%;
}
.hero .slide.active {
opacity: 1;
}
.hero-content {
position: absolute; bottom: 30%; left: 5%;
z-index: 1; max-width: 600px; color: #151515;;
}
.hero h1 {
font-size: 2.5rem; margin-bottom: 0.5rem; line-height: 1.2;
}
.hero p {
font-size: 1.1rem; margin-bottom: 1.5rem;
}
.btn {
display: inline-block;
padding: 12px 24px;
background: var(--color-secondary);
color: #fff;
font-weight: 600;
border-radius: 4px;
transition: background var(--transition);
}
.btn + .btn { margin-left: 12px; }
.btn:hover { background: #e64a19; }
/* Sections */
section {
max-width: 1200px; /* or whatever your ideal content width is */
margin: 0 auto; /* centers each section */
padding: 60px 20px; /* comfortable top/bottom and small side padding */ }
h2 {
font-size: 2rem;
margin-bottom: 2rem;
border-left: 4px solid var(--color-primary);
padding-left: 10px;
}
/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
/* Features old
.features .item {
background: #fff; padding: 24px;
border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.05);
transition: transform var(--transition);
}
.features .item:hover { transform: translateY(-4px); }
.features h3 { color: var(--color-primary); margin-bottom: 0.5rem; }
.features p { color: #555; font-size: 0.95rem; }
*/
/* wrap cards in a vertical stack with spacing */
.features-cards {
display: flex;
flex-direction: column;
gap: 40px;
padding: 60px 20px; /* same vertical padding as other sections */
}
.feature-subcategory {
font-size: 1.5rem; /* adjust size */
font-weight: 600; /* semi-bold */
color: var(--color-primary); /* match your palette */
margin: 40px 0 16px; /* space above & below */
padding-left: 24px; /* align with your card text */
border-left: 4px solid var(--color-primary);
}
/* each card is a 2-column grid */
.feature-card {
display: grid;
grid-template-columns: 3fr 4fr;
grid-template-areas: "info image";
align-items: center; /* vertically center everything in the row */
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
overflow: hidden;
transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
/* image takes full height of card, scales to fit */
.feature-card img {
grid-area: image;
width: 100%;
height: 100%;
object-fit: cover;
}
/* text side padding and layout */
.feature-info {
grid-area: info;
padding: 24px;
}
.feature-info h3 {
font-size: 1.75rem;
margin-bottom: 0.75rem;
color: var(--color-text);
}
.feature-info p {
line-height: 1.6;
color: #555;
margin-bottom: 1.5rem;
}
/* secondary button style */
.btn-secondary {
display: inline-block;
padding: 10px 24px;
background: var(--color-primary);
color: #fff;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
transition: background var(--transition);
}
.btn-secondary:hover {
background: var(--color-secondary);
}
/* Product & Service */
.ps-item img { width:100%; border-radius:6px; }
/* Product cards layout */
.product-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
padding: 60px 5%; /* match your other sections */
}
/* Individual card styling */
.product-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
overflow: hidden;
display: flex;
flex-direction: column;
text-align: center;
}
/* Image atop */
.product-card img {
width: 100%;
height: auto;
object-fit: cover;
}
/* Title under image */
.product-card h3 {
margin: 16px 0 8px;
font-size: 1.25rem;
color: var(--color-primary);
}
/* Description box */
.product-desc {
padding: 0 16px 24px;
font-size: 0.95rem;
color: #555;
line-height: 1.5;
flex-grow: 1;
}
/* Research */
#research ul {
display: block;
list-style: disc outside;
padding-left: 1.5rem;
margin: 0 0 2rem;
}
#research li {
margin-bottom: 0.75rem;
line-height: 1.4;
}
#research a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition);
}
#research a:hover {
color: var(--color-secondary);
}
/* Demo */
#demo.demo {
text-align: center; /* keep everything centered by default */
}
#demo.demo h2 {
text-align: left; /* override to left-align the title */
margin-bottom: 1rem;
}
#demo.demo video {
display: block;
width: 100%;
max-width: 800px;
height: auto; /* preserve aspect ratio */
margin: 0 auto 1rem; /* center it */
border-radius: 6px;
aspect-ratio: 16 / 9; /* CSS lock to 16:9 */
object-fit: Cover;
}
/* Team */
.team-item {
text-align: center;
transition: transform var(--transition);
margin-top: 10px;
}
.team-item:hover { transform: translateY(-6px); }
.team-item img {
width: 180px; height:180px;
object-fit: cover; border-radius:50%;
border: 3px solid var(#fff);
}
.team-item p { margin-top: 20px; font-weight: 600; }
/* Contact */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
/* first value = row-gap, second = column-gap */
gap: 0px 60px;
/* ↓ other props unchanged */
grid-template-rows: auto auto;
align-items: start;
}
/* Map goes in row 1, col 1 */
.contact-grid .map {
grid-column: 1;
grid-row: 2;
}
/* Form goes in col 2, but spans both rows
so it always fills the full height of row 1 */
.contact-grid .contact-form {
grid-column: 2;
grid-row: 1 / span 2;
}
/* Info goes in row 2, col 1 */
.contact-grid .contact-info {
grid-column: 1;
grid-row: 1;
}
/* Make the map fill its grid cell (so it stretches to match the form’s height) */
.contact-grid .map,
.contact-grid .map iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 6px;
display: block;
}
.contact-form label {
display: block; margin: 12px 0 4px;
font-weight: 600; font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
width: 100%; padding: 8px; border:1px solid #ccc; border-radius:4px;
font-size: 0.95rem;
}
/* Footer */
footer {
text-align: center; padding: 24px 5%;
color: #777; font-size: 0.85rem; border-top:1px solid #ececec;
}
/* Responsive nav */
@media (max-width: 768px) {
nav { display: none; position: absolute; top:64px; right:5%; background:#fff; flex-direction: column; box-shadow:0 2px 8px rgba(0,0,0,0.1); border-radius:4px; }
nav.show { display: flex; }
.hamburger { display: flex; }
}
/* 1. Hide desktop bg, prepare img */
.slide {
/* keep your inline background-image here for desktop */
}
.slide-img {
display: none; /* desktop: hide the <img> */
width: 100%;
height: auto;
object-fit: cover;
}
/* MOBILE FIRST ADJUSTMENTS */
@media (max-width: 768px) {
/* 1. NAVIGATION: always show hamburger, hide inline links */
.nav-container nav {
display: none;
position: absolute;
top: 56px; right: 5%;
flex-direction: column;
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
border-radius: 4px;
width: calc(100% - 40px);
}
.hamburger { display: flex; }
/* 2. HERO: stack content and tighten */
.slides {
position: static;
height: auto;
}
/* 3) Force every slide back to absolute, full-container */
.slide {
position: static !important;
height: none;
top: auto; left: auto; right: auto; bottom: auto;
background: none !important; /* hide the desktop bg-image */
opacity: 1; /* keep the opacity rules */
}
.slide.active {
display: block;
opacity: 1;
}
/* 4) Show your <img> as the mobile background */
.slide-img { /* you added this in the HTML */
display: block;
width: 100%;
height: auto;
object-fit: cover;
}
/* 5) Let the hero <img> container size itself, then put text below */
.hero {
aspect-ratio: auto !important;
height: auto !important;
overflow: visible;
padding: 0 5% 1rem; /* tighten up */
margin-bottom: 2rem;
}
.slide.active {
opacity: 1 !important; /* force full opacity */
display: block !important; /* make sure it’s in flow */
}
.slide {
transition: none !important;
}
/* 6) Flow the caption under the slides */
.hero-content {
position: static !important;
margin: 1rem 0;
text-align: center;
}
.hero-content h1 { font-size: 2rem; }
.hero-content p { font-size: 1rem; margin-bottom: 1rem; }
.btn {
display: inline-block;
margin: 0.5rem 0.25rem;
}
.btn + .btn { margin-left: 0; }
/* 3. FEATURE CARDS: one-column stack */
.features-cards {
gap: 24px;
padding: 40px 5%;
}
.feature-card {
/* switch off the two-column layout */
display: flex;
flex-direction: column;
align-items: center; /* center everything, or use flex-start */
gap: 0.75rem; /* space between items */
padding: 1rem 5%; /* optional breathing room */
}
/* 1) Title on top */
.feature-card h3 {
order: 1;
margin: 0;
text-align: center;
font-size: 1.25rem; /* adjust as needed */
}
/* 2) Then the image, full-width */
.feature-card img {
order: 2;
width: 100%;
height: auto;
object-fit: cover;
border-radius: 4px; /* optional */
}
/* 3) Finally the paragraph */
.feature-card p {
order: 3;
margin: 0;
text-align: left;
font-size: 1rem; /* adjust as needed */
line-height: 1.4;
}
/* 4. PRODUCT CARDS: single column
.product-cards {
grid-template-columns: 1fr;
padding: 40px 5%;
}
/* 5. TEAM & CONTACT: collapse to one column */
.team-item { margin: 0 auto 24px; }
.team-grid { display: flex; flex-direction: column; align-items: center; }
.contact-grid {
display: flex;
flex-direction: column;
gap: 24px;
padding: 0 5%;
}
/* 6. VIDEO DEMO: fullwidth */
#demo.demo video {
max-width: 100%;
margin-bottom: 16px;
}
}
</style>
</head>
<body>
<header>
<div class="nav-container">
<div class="logo">Viewscore.io</div>
<div class="hamburger" onclick="document.querySelector('nav').classList.toggle('show')">
<span></span><span></span><span></span>
</div>
<nav>
<a href="#features">Features</a>
<!-- <a href="#product">Product</a> -->
<a href="#research">Research</a>
<a href="#demo">Demo</a>
<a href="#team">Team</a>
<a href="#support">Support</a>
</nav>
</div>
</header>
<section class="hero" role="banner">
<div class="slides">
<div class="slide active" style="background-image: url('images/TitleImage1.png')">
<img class="slide-img" src="images/TitleImage1.png" alt="Predictive Design Intelligence">
<div class="hero-content">
<h1>Predictive<br>Design Intelligence</h1>
<p>for Measurable Satisfaction</p>
<a href="#demo" class="btn">Book a Demo</a>
<a href="#features" class="btn">Learn More</a>
</div>
</div>
<div class="slide" style="background-image: url('images/TitleImage2.png')">
<img class="slide-img" src="images/TitleImage2.png" alt="Transparent Property Value">
<div class="hero-content">
<h1>Transparent<br>Property Value</h1>
<p>with Occupant Satisfaction Data</p>
<a href="#demo" class="btn">Book a Demo</a>
<a href="#features" class="btn">Learn More</a>
</div>
</div>
</div>
</section>
<section id="features">
<h2>Key Features</h2>
<div class="features-cards">
<!-- Subcategory 2 -->
<div class="feature-subcategory">Core Technology Platform</div>
<!-- Card 1 -->
<div class="feature-card">
<img src="images/ViewISO.gif" alt="View Quality Simulation Engine">
<div class="feature-info">
<h3>View Quality Simulation Engine</h3>
<p>
Advanced machine learning system trained on 12,000+ human satisfaction surveys that predicts occupant satisfaction with window views. Analyzes segmentation and depth information to generate precise view scores at directional, locational, room, unit, and building levels for comprehensive design optimization and property evaluation.
</p>
<a href="features/view-quality-simulation-engine.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Card 2 -->
<div class="feature-card">
<img src="images/PrivacyISO_Cropped.gif" alt="Privacy Quality Assessment System">
<div class="feature-info">
<h3>Privacy Quality Assessment System</h3>
<p>
Sophisticated analysis engine that evaluates visual privacy using neighboring building facades, urban context, street trees, and window positioning. Assesses exposure levels and privacy concerns while maintaining balance between natural light access, desirable views, and occupant security in dense environments.
</p>
<a href="features/privacy-quality-assessment-system.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Card 3 -->
<div class="feature-card">
<img src="images/WVImageNet-01.png" alt="WV-ImageNet Dataset">
<div class="feature-info">
<h3>WV-ImageNet Dataset</h3>
<p>
Comprehensive dataset containing 12,000+ annotated window view images with human satisfaction ratings, segmentation maps, and depth information. Serves as the foundation for machine learning model training and enables continuous improvement of view assessment accuracy and methodology validation.
</p>
<a href="features/WV-imagenet-dataset.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Subcategory 2 -->
<div class="feature-subcategory">Prospective Application</div>
<!-- Card 1 -->
<div class="feature-card">
<img src="images/InvestmentAnalyticsSuits.gif" alt="Real Estate Intelligence Platform">
<div class="feature-info">
<h3>Real Estate Intelligence Platform</h3>
<p>
Transform property listings with automated view scoring and valuation insights. Integrates with MLS platforms, Zillow, and major listing services to help agents highlight premium views, justify pricing strategies, and differentiate properties through data-driven view quality metrics that resonate with buyers.
</p>
<a href="features/real-estate-intelligence-platform.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Card 2 -->
<div class="feature-card">
<img src="images/ArchitecturalDesignAssistant.gif" alt="Architectural Design Assistant">
<div class="feature-info">
<h3>Architectural Design Assistant</h3>
<p>
Real-time CAD plugin for Rhino3D, AutoCAD, and other design software that provides instant feedback on view quality, privacy levels, and occupant satisfaction. Enables architects to simulate building orientations, window placements, and urban contexts before construction to maximize development value.
</p>
<a href="features/architectural-design-assistant.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Card 3
<div class="feature-card">
<iframe
src="images/pareto_front_interactive.html"
title="Interactive Pareto Front Analysis"
style="
width: 100%;
height: 100%;
border: none;
object-fit: cover;
"
loading="lazy"
></iframe>
<div class="feature-info">
<h3>Investment Analytics Suite</h3>
<p>
Comprehensive due diligence platform for real estate investors and developers. Provides automated property assessment, neighborhood benchmarking, and market positioning analysis to identify undervalued properties with superior views and optimize development potential for maximum ROI across portfolio investments.
</p>
<a href="features/investment-analytics-suite.html" class="btn btn-secondary">Find out more</a>
</div>
</div>-->
<!-- Card 4 -->
<div class="feature-card">
<img src="images/HospitalityRevenue.png" alt="Hospitality Revenue Optimization">
<div class="feature-info">
<h3>Hospitality Revenue Optimization</h3>
<p>
Dynamic pricing and booking optimization system for hotels that leverages view quality scores for revenue management. Evaluates landmark visibility, water views, and nature access to help hospitality businesses optimize room rates, enhance guest satisfaction, and improve revenue per available room.
</p>
<a href="features/hospitality-revenue-optimization.html" class="btn btn-secondary">Find out more</a>
</div>
</div>
<!-- Subcategory 3
<div class="feature-subcategory">Integration Capabilities</div>-->
<!-- Card 1
<div class="feature-card">
<img src="images/DeploymentSolutions.png" alt="Deployment Solutions">
<div class="feature-info">
<h3>Deployment Solutions</h3>
<p>
<b>API Access:</b> Restful API for seamless integration with existing platforms and workflows<br>
<b>Cloud Infrastructure:</b> Scalable processing for high-volume analysis and real-time applications<br>
<b>Custom Solutions:</b> Tailored implementations for enterprise clients and specialized use cases<br>
<b>Data Export:</b> Comprehensive reporting and analytics export for business intelligence systems
</p>
<a href="features/deployment-solutions.html" class="btn btn-secondary">Find out more</a>
</div>
</div>-->
</div>
</section>
<!-- <section id="features">
<h2>Key Features</h2>
<div class="features grid-2">
<div class="item">
<h3>Optimize Design</h3>
<p>Run rapid simulations to fine-tune your layouts for maximum occupant satisfaction.</p>
</div>
<div class="item">
<h3>Evaluate Property</h3>
<p>Assess daylight, view quality, and privacy scores across your building portfolio.</p>
</div>
<div class="item">
<h3>Boost Transactions</h3>
<p>Leverage data-driven visuals to sell or lease spaces faster and at higher rates.</p>
</div>
<div class="item">
<h3>API Access</h3>
<p>Integrate Viewscore into your own systems via our RESTful endpoints.</p>
</div>
</div>
</section> -->
<!--
<section id="product">
<h2>Product</h2>
<div class="ps-grid grid-3">
<div class="ps-item">
<h3>Software</h3>
<img src="images/Software-01.png" alt="Software screenshot">
</div>
<div class="ps-item">
<h3>API</h3>
<img src="images/API-01.png" alt="API example">
</div>
<div class="ps-item">
<h3>Consulting</h3>
<img src="images/Consulting.png" alt="Consulting service">
</div>
</div>
</section>-->
<!--
<section id="product">
<h2>Product & Service</h2>
<div class="product-cards">
Card 1
<div class="product-card">
<img src="images/Software-01.png" alt="Software screenshot">
<h3>Software</h3>
<div class="product-desc">
A full-featured desktop & web app for running rapid occupant-satisfaction simulations.
Visualize daylight, view quality, and privacy scores in real time as you tweak your layouts.
</div>
</div>
Card 2
<div class="product-card">
<img src="images/API-01.png" alt="API example">
<h3>API</h3>
<div class="product-desc">
RESTful endpoints to integrate Viewscore into your own tools.
Send geometry or image data, get back scored results for automated workflows.
</div>
</div>
Card 3
<div class="product-card">
<img src="images/Consulting.png" alt="Consulting service">
<h3>Consulting</h3>
<div class="product-desc">
Tailored onsite and remote consulting packages.
We’ll help you set up custom pipelines, interpret results, and train your team.
</div>
</div>
</div>
</section>
-->
<!-- Replace your old research section with this: -->
<section id="research">
<h2>Research Publications</h2>
<ul>
<li>
Kim, J., Kral, K., Ko, W.H., Kent, M., Schiavon, S., Dogan, T.
<a href="https://www.sciencedirect.com/science/article/pii/S0360132322001548" target="_blank">
<em>Window View Satisfaction Assessment Method: A Comparison of Physical Space, Virtual Reality, and Digital Image</em>
</a>. LEUKOS.
</li>
<li>
Kim, J., Kent, M., Kral, K., Dogan, T.
<a href="https://www.sciencedirect.com/science/article/pii/S0360132322001548" target="_blank">
<em>A New Tool for Early Design Window View Satisfaction Evaluation in Residential Buildings</em>
</a>. Building and Environment.
</li>
<li>
Kim, J., Escamilla-Guerrero, M., Kral, K., Dogan, T.
<a href="https://www.researchgate.net/publication/394967420_Comparative_Analysis_of_Daylight_View_and_Visual_Privacy_A_New_York_City_Case_Study" target="_blank">
<em>Comparative Analysis of Daylight, View, and Visual Privacy: A New York City Case Study</em>
</a>. IBPSA 2025 Conference.
</li>
<li>
Kim, J., Kral, K., Dogan, T.
<a href="https://www.researchgate.net/publication/392508669_TOWARDS_QUANTIFYING_VISUAL_EXPOSURE_AND_THE_RESULTING_PRIVACY_CONCERNS_IN_RESIDENTIAL_BUILDING" target="_blank">
<em>Towards Quantifying Visual Exposure and The Resulting Privacy Concerns in Residential Building</em>
</a>. ANNSIM 2025 Conference.
</li>
</ul>
</section>
<section id="demo" class="demo">
<h2>Demo</h2>
<video
autoplay
loop
muted
playsinline
width="100%"
style="max-width:800px; border-radius:6px;"
>
<source src="images/ViewscoreDemo_withoutName_720.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p><a href="#support" class="btn">Request trial</a></p>
</section>
<section id="team">
<h2>Meet the Team</h2>
<div class="ps-grid grid-2 team-grid">
<div class="team-item">
<a
href="https://www.linkedin.com/in/jaeha-kim-90ba18b4/"
target="_blank"
rel="noopener noreferrer"
>
<img src="images/JaehaKim.png" alt="Jaeha Kim">
</a>
<p>Jaeha Kim<br><small>Project Lead Developer</small></p>
</div>
<div class="team-item">
<a
href="https://www.linkedin.com/in/timur-dogan-b28340a9/"
target="_blank"
rel="noopener noreferrer"
>
<img src="images/TimurDogan.png" alt="Timur Dogan">
</a>
<p>Timur Dogan<br><small>Research Lead</small></p>
</div>
</div>
</section>
<section id="support">
<h2>Contact & Support</h2>
<div class="contact-grid">
<!-- Row 1, Col 1: map -->
<div class="map" style="margin-bottom:40px;">
<!-- Replace with your actual embed link -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d715.0254904204679!2d-76.48454360213405!3d42.450946626487934!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89d08220beb430eb%3A0xa53ba1f6539451cb!2sCornell%20University%20College%20of%20Architecture%2C%20Art%2C%20and%20Planning!5e0!3m2!1sen!2sus!4v1750376662344!5m2!1sen!2sus" loading="lazy"></iframe>
</div>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"
onload="if(submitted){ showThankYou(); }"></iframe>
<div id="thankyou_message" style="display:none; color:green; margin-top:1rem;">
✅ Thanks for your message! We’ll get back to you shortly.
</div>
<form class="contact-form" id="contactForm" action="https://script.google.com/macros/s/AKfycbyfFF5CgsPxmSJ-n5oVsWZnfuBRS5SoRTiiKLqlgMK58GML72X3msVhyPNhPLN8HToIJA/exec" method="POST" target="hidden_iframe" onsubmit="submitted = true;">
<label for="email">Email</label>
<input id="email" name="email" type="email" required>
<label for="name">Name</label>
<input id="name" name="name" type="text" required>
<label for="company">Company</label>
<input id="company" name="company" type="text">
<label for="subject">Subject</label>
<textarea id="subject" name="subject" rows="1" required></textarea>
<label for="message">Message</label>
<textarea id="message" name="message" rows="7" required></textarea>
<button type="submit" class="btn" style="margin-top:30px;">Send Message</button>
<script>
let submitted = false;
function showThankYou() {
document.getElementById('thankyou_message').style.display = 'block';
// optional: reset the form
document.getElementById('contactForm').reset();
submitted = false;
}
</script>
</form>
<div class="'contact-info">
<p>Have a question about Viewscore.io? <br>Want to learn more about our product or trial version? <br>We'd love to hear from you. <br>Fill out the form and our team will get back to you shortly.<br></p>
<p><strong>Address</strong><br>250B Sibley Hall, Ithaca, NY 14850</p>
<p><strong>Email</strong><br>jk2894@cornell.edu</p>
</div>
</div>
</section>
<footer>
© 2025 Viewscore.io | Privacy Policy | Terms of Service
</footer>
<script>
const slides = document.querySelectorAll('.hero .slide');
let current = 0;
setInterval(() => {
slides[current].classList.remove('active');
current = (current + 1) % slides.length;
slides[current].classList.add('active');
}, 5000); // 5000ms = 5s per slide
</script>
</body>
</html>
<!--
"""
with open("index.html", "w", encoding="utf-8") as f:
f.write(html)
print("✓ Generated index.html")
# 2. Serve it at http://localhost:8000
os.chdir(os.path.dirname(os.path.abspath(__file__)))
PORT = 8000
print(f"🚀 Serving on http://localhost:{PORT}\nPress Ctrl+C to stop.")
server = HTTPServer(("0.0.0.0", PORT), SimpleHTTPRequestHandler)
server.serve_forever()
-->