-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (180 loc) · 10.1 KB
/
Copy pathindex.html
File metadata and controls
190 lines (180 loc) · 10.1 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dream Forge Labs</title>
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script>
// Configure Tailwind to use the 'class' strategy for dark mode
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
'deep-purple': '#6B4FBF',
'warm-cream': '#FFF8E7',
'coral-pink': '#FF7B68',
'ocean-teal': '#2DBFB8',
'golden-yellow': '#FFB84D',
'forest-green': '#4A7C59',
'slate-gray': '#6B7280',
'soft-red': '#E86C6C',
'charcoal': '#2D3748',
'medium-purple': '#8B7AB8',
},
fontFamily: {
display: ['Fredoka', 'sans-serif'],
body: ['Lexend', 'sans-serif'],
ui: ['Inter', 'sans-serif'],
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600&family=Inter:wght@400;500&family=Lexend:wght@400&display=swap" rel="stylesheet">
<style>
/* Base styles are for light mode */
body {
font-family: 'Inter', sans-serif;
background-color: #F9FAFB; /* Gray 50 */
transition: background-color 0.3s, color 0.3s;
}
.loom-ed-body {
background-color: #FFF8E7; /* Warm Cream */
}
.loom-ed-dark-body {
background: #111827; /* Gray 900 */
}
.section-title {
@apply text-4xl md:text-5xl font-extrabold text-center mb-12 relative;
}
.section-title::after {
content: '';
@apply block w-24 h-1.5 mx-auto mt-4 rounded;
background-color: #F97316; /* Vibrant Orange */
}
::selection {
background-color: #6B4FBF; /* Deep Purple */
color: #ffffff;
}
/* Dark Mode styles */
.dark body {
background: #111827; /* Gray 900 */
}
.dark .loom-ed-body {
background: #111827; /* Gray 900 */
}
.dark ::selection {
color: #111827;
}
</style>
<script>
// Set theme on initial load to prevent FOUC and default to light mode
if (localStorage.getItem('theme') === 'dark') {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.remove('dark');
}
</script>
</head>
<body class="antialiased font-ui text-charcoal dark:text-gray-300">
<!-- Header -->
<header id="header" class="bg-warm-cream/80 dark:bg-charcoal/80 backdrop-blur-md fixed top-0 left-0 right-0 z-50 transition-all duration-300 border-b border-medium-purple dark:border-deep-purple">
<div class="container mx-auto px-6 py-4">
<nav class="flex items-center justify-between">
<a href="#" class="text-2xl font-display font-bold text-deep-purple dark:text-warm-cream flex items-center">
<i class="fas fa-film mr-2 text-deep-purple"></i> Dream Forge Labs
</a>
<div class="flex items-center space-x-4">
<div class="hidden md:flex items-center space-x-8">
<a href="#about" class="text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple transition-colors">About</a>
<a href="#storyweaver" class="text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple transition-colors">StoryWeaver</a>
<a href="#loom-ed" class="text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple transition-colors">LoomEd</a>
</div>
<!-- Theme Toggle Button -->
<button id="theme-toggle" class="text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple transition-colors w-10 h-10 flex items-center justify-center rounded-lg hover:bg-warm-cream dark:hover:bg-charcoal">
<i class="fas fa-moon text-xl hidden" id="theme-toggle-dark-icon"></i>
<i class="fas fa-sun text-xl hidden" id="theme-toggle-light-icon"></i>
</button>
<button id="mobile-menu-button" class="md:hidden text-deep-purple dark:text-warm-cream text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden px-6 pb-4 bg-warm-cream dark:bg-charcoal">
<a href="#about" class="block py-2 text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple">About</a>
<a href="#storyweaver" class="block py-2 text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple">StoryWeaver</a>
<a href="#loom-ed" class="block py-2 text-medium-purple dark:text-warm-cream hover:text-deep-purple dark:hover:text-deep-purple">LoomEd</a>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center pt-24 md:pt-0">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-extrabold text-gray-900 dark:text-gray-50 leading-tight mb-6">
Engineering the Future of Human Imagination.
</h1>
<p class="text-lg md:text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto mb-10">
We build intelligent tools that bridge creativity and technology — empowering people to learn, create, and tell stories in new, meaningful ways.
</p>
<a href="#about" class="bg-[#F97316] hover:bg-[#EA580C] text-white font-bold py-3 px-8 rounded-lg text-lg transition-all duration-300 transform hover:scale-105 shadow-lg shadow-orange-500/20 hover:shadow-xl hover:shadow-orange-500/30">
Discover More
</a>
</div>
</section>
<!-- About Us Section -->
<section id="about" class="py-20 md:py-28 bg-white dark:bg-[#1F2937]">
<div class="container mx-auto px-6">
<h2 class="section-title text-gray-900 dark:text-gray-50">About Us</h2>
<div class="grid md:grid-cols-2 gap-16 items-center max-w-6xl mx-auto mt-16">
<!-- Image on the left -->
<div>
<img src="https://placehold.co/600x450/1F2937/FFF8E7?text=Our+Vision" alt="Abstract image representing the vision of Dream Forge Labs" class="rounded-lg shadow-2xl transform hover:scale-105 transition-transform duration-300">
</div>
<!-- Text on the right -->
<div class="text-left">
<h3 class="text-4xl md:text-5xl font-bold text-gray-800 dark:text-gray-100 mb-6 font-display leading-tight">Shaping the Next Generation of Human Expression</h3>
<p class="text-gray-600 dark:text-gray-300 mb-8 leading-relaxed">
Founded by a team of technologists and storytellers, Dream Forge Labs is a creative technology studio dedicated to building intelligent tools that bridge creativity and technology.
</p>
<blockquote class="border-l-4 border-[#F97316] pl-6 py-2 italic text-gray-700 dark:text-gray-200">
<p class="text-xl leading-relaxed">
"We believe the future belongs to creators who dream boldly and build fearlessly — and our mission is to give them the technology to do both."
</p>
</blockquote>
</div>
</div>
</div>
</section>
<!-- StoryWeaver Section Placeholder -->
<div id="storyweaver">
<!-- StoryWeaver content will be loaded here by JavaScript -->
</div>
<!-- LoomEd Section Placeholder -->
<div id="loom-ed">
<!-- LoomEd content will be loaded here by JavaScript -->
</div>
</main>
<!-- Footer -->
<footer class="bg-white dark:bg-gray-900 border-t border-gray-200 dark:border-gray-700">
<div class="container mx-auto px-6 py-8">
<div class="flex flex-col md:flex-row items-center justify-between">
<p class="text-gray-500 dark:text-gray-400">© 2025 Dream Forge Labs. All rights reserved.</p>
<div class="flex mt-4 md:mt-0 space-x-6">
<a href="https://www.youtube.com/" class="text-gray-500 dark:text-gray-400 hover:text-[#F97316] dark:hover:text-[#F97316] transition-colors"><i class="fab fa-youtube text-xl"></i></a>
<a href="https://www.instagram.com/" class="text-gray-500 dark:text-gray-400 hover:text-[#F97316] dark:hover:text-[#F97316] transition-colors"><i class="fab fa-instagram text-xl"></i></a>
<a href="https://www.linkedin.com/" class="text-gray-500 dark:text-gray-400 hover:text-[#F97316] dark:hover:text-[#F97316] transition-colors"><i class="fab fa-linkedin-in text-xl"></i></a>
</div>
</div>
</div>
</footer>
<script src="assets/js/main.js" defer></script>
</body>
</html>