Spaces:
Runtime error
Runtime error
YoonJ-C
commited on
Commit
·
0349d50
1
Parent(s):
8dd8705
Update landing and styles; replace light theme video; refresh icons; tweak landing template; run app setup
Browse files
static/landing.css
CHANGED
|
@@ -116,7 +116,7 @@ body {
|
|
| 116 |
height: 100vh;
|
| 117 |
object-fit: cover;
|
| 118 |
z-index: -1;
|
| 119 |
-
background: #
|
| 120 |
opacity: .4;
|
| 121 |
visibility: visible;
|
| 122 |
}
|
|
@@ -143,7 +143,7 @@ body {
|
|
| 143 |
.hero-subtitle {
|
| 144 |
font-size: var(--font-size-xl);
|
| 145 |
color: var(--text-primary);
|
| 146 |
-
max-width:
|
| 147 |
margin: 0 auto 6rem;
|
| 148 |
line-height: 1.8;
|
| 149 |
animation: fadeInUp 0.6s ease 0.2s both;
|
|
@@ -212,6 +212,7 @@ body {
|
|
| 212 |
display: flex;
|
| 213 |
align-items: center;
|
| 214 |
justify-content: center;
|
|
|
|
| 215 |
}
|
| 216 |
|
| 217 |
.section-container {
|
|
@@ -232,6 +233,15 @@ body {
|
|
| 232 |
margin-bottom: var(--space-md);
|
| 233 |
}
|
| 234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
.section-header p {
|
| 236 |
font-size: var(--font-size-xl);
|
| 237 |
color: var(--text-secondary);
|
|
|
|
| 116 |
height: 100vh;
|
| 117 |
object-fit: cover;
|
| 118 |
z-index: -1;
|
| 119 |
+
background: #fff;
|
| 120 |
opacity: .4;
|
| 121 |
visibility: visible;
|
| 122 |
}
|
|
|
|
| 143 |
.hero-subtitle {
|
| 144 |
font-size: var(--font-size-xl);
|
| 145 |
color: var(--text-primary);
|
| 146 |
+
max-width: 600px;
|
| 147 |
margin: 0 auto 6rem;
|
| 148 |
line-height: 1.8;
|
| 149 |
animation: fadeInUp 0.6s ease 0.2s both;
|
|
|
|
| 212 |
display: flex;
|
| 213 |
align-items: center;
|
| 214 |
justify-content: center;
|
| 215 |
+
z-index: 2;
|
| 216 |
}
|
| 217 |
|
| 218 |
.section-container {
|
|
|
|
| 233 |
margin-bottom: var(--space-md);
|
| 234 |
}
|
| 235 |
|
| 236 |
+
.section-subtitle {
|
| 237 |
+
font-size: var(--font-size-xl); /* same as hero-subtitle */
|
| 238 |
+
color: var(--text-primary); /* hero uses primary */
|
| 239 |
+
max-width: 600px; /* hero-subtitle width */
|
| 240 |
+
margin: 0 auto var(--space-4xl); /* centered, comfortable bottom space */
|
| 241 |
+
line-height: 1.8; /* easier reading like hero */
|
| 242 |
+
animation: fadeInUp 0.6s ease 0.2s both; /* subtle entrance like hero */
|
| 243 |
+
}
|
| 244 |
+
|
| 245 |
.section-header p {
|
| 246 |
font-size: var(--font-size-xl);
|
| 247 |
color: var(--text-secondary);
|
static/style.css
CHANGED
|
@@ -9,7 +9,13 @@
|
|
| 9 |
|
| 10 |
body {
|
| 11 |
font-family: var(--font-family);
|
| 12 |
-
background:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
min-height: 100vh;
|
| 14 |
display: flex;
|
| 15 |
justify-content: center;
|
|
|
|
| 9 |
|
| 10 |
body {
|
| 11 |
font-family: var(--font-family);
|
| 12 |
+
background: linear-gradient(to bottom,
|
| 13 |
+
rgb(255, 255, 255) 0%,
|
| 14 |
+
rgb(255, 255, 255) 5%,
|
| 15 |
+
rgb(226, 218, 250) 30%,
|
| 16 |
+
rgb(219, 239, 253) 80%,
|
| 17 |
+
rgb(255, 255, 255) 95%,
|
| 18 |
+
rgb(255, 255, 255) 100%);
|
| 19 |
min-height: 100vh;
|
| 20 |
display: flex;
|
| 21 |
justify-content: center;
|
static/video/{animation-light-theme.mp4 → Animation (Light theme).mp4}
RENAMED
|
File without changes
|
templates/landing.html
CHANGED
|
@@ -23,7 +23,7 @@
|
|
| 23 |
<section class="hero-section">
|
| 24 |
<!-- Video Background -->
|
| 25 |
<video class="hero-video" autoplay muted loop playsinline preload="auto">
|
| 26 |
-
<source src="{{ url_for('static', filename='video/
|
| 27 |
Your browser does not support the video tag.
|
| 28 |
</video>
|
| 29 |
|
|
@@ -33,8 +33,8 @@
|
|
| 33 |
Find Your Spiritual Journey
|
| 34 |
</h1>
|
| 35 |
<p class="hero-subtitle">
|
| 36 |
-
Discover
|
| 37 |
-
Answer 8 thoughtful questions
|
| 38 |
</p>
|
| 39 |
|
| 40 |
<div class="cta-buttons">
|
|
@@ -55,7 +55,9 @@
|
|
| 55 |
<div class="section-container">
|
| 56 |
<div class="section-header">
|
| 57 |
<h2>What You'll Discover</h2>
|
| 58 |
-
<p
|
|
|
|
|
|
|
| 59 |
</div>
|
| 60 |
|
| 61 |
<div class="features-grid">
|
|
|
|
| 23 |
<section class="hero-section">
|
| 24 |
<!-- Video Background -->
|
| 25 |
<video class="hero-video" autoplay muted loop playsinline preload="auto">
|
| 26 |
+
<source src="{{ url_for('static', filename='video/Animation (Light theme).mp4') }}" type="video/mp4">
|
| 27 |
Your browser does not support the video tag.
|
| 28 |
</video>
|
| 29 |
|
|
|
|
| 33 |
Find Your Spiritual Journey
|
| 34 |
</h1>
|
| 35 |
<p class="hero-subtitle">
|
| 36 |
+
Discover the spiritual or religious path that resonates with your unique beliefs, values, and lifestyle.
|
| 37 |
+
Answer 8 thoughtful questions to gain deep insights into your worldview.
|
| 38 |
</p>
|
| 39 |
|
| 40 |
<div class="cta-buttons">
|
|
|
|
| 55 |
<div class="section-container">
|
| 56 |
<div class="section-header">
|
| 57 |
<h2>What You'll Discover</h2>
|
| 58 |
+
<p class="section-subtitle">
|
| 59 |
+
After completing the assessment, explore your top 3 spiritual paths and ask questions through our interactive chat feature.
|
| 60 |
+
</p>
|
| 61 |
</div>
|
| 62 |
|
| 63 |
<div class="features-grid">
|