-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (101 loc) · 4.81 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pipedream Ventures | Product Building Studio</title>
<!-- Add favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<!-- Add custom font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
}
}
}
</script>
</head>
<body class="bg-white font-sans">
<div class="min-h-screen flex flex-col">
<!-- Navigation -->
<nav class="py-6 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="text-2xl font-bold text-gray-900">
Pipedream Ventures
</div>
<div class="space-x-8">
<a href="#work" class="text-gray-600 hover:text-gray-900">Our Work</a>
<a href="#contact" class="text-gray-600 hover:text-gray-900">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<main class="flex-grow">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="text-center max-w-3xl mx-auto">
<h1 class="text-5xl sm:text-6xl font-bold text-gray-900 mb-8">
We Build Products That Matter
</h1>
<p class="text-xl text-gray-600 mb-12">
Pipedream Ventures is a product building studio that transforms innovative ideas into market-ready solutions. We design, develop, and scale digital products that make a difference.
</p>
<div class="flex justify-center gap-4">
<a href="#contact"
class="px-8 py-3 bg-blue-600 text-white font-medium rounded-lg
hover:bg-blue-700 transition-colors duration-200">
Start a Project
</a>
<a href="#work"
class="px-8 py-3 border border-gray-300 text-gray-700 font-medium rounded-lg
hover:border-gray-400 hover:text-gray-900 transition-colors duration-200">
View Our Work
</a>
</div>
</div>
<!-- Features/Services Section -->
<div class="mt-24 grid grid-cols-1 md:grid-cols-3 gap-12">
<div class="text-center">
<div class="text-xl font-semibold mb-4">Product Strategy</div>
<p class="text-gray-600">We help define and refine your product vision, market fit, and roadmap to success.</p>
</div>
<div class="text-center">
<div class="text-xl font-semibold mb-4">Design & Development</div>
<p class="text-gray-600">Full-stack development and design services to bring your product vision to life.</p>
</div>
<div class="text-center">
<div class="text-xl font-semibold mb-4">Scale & Growth</div>
<p class="text-gray-600">Strategic support to help your product reach its target audience and scale effectively.</p>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-50 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center">
<div class="text-gray-500">
© 2024 Pipedream Ventures. All rights reserved.
</div>
<div class="space-x-6">
<a href="mailto:contact@pipedreamventures.com"
class="text-gray-600 hover:text-gray-900 transition-colors duration-200">
Email
</a>
<a href="https://linkedin.com/company/pipedream-ventures"
class="text-gray-600 hover:text-gray-900 transition-colors duration-200">
LinkedIn
</a>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>