File size: 2,980 Bytes
95554e6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About - Peec AI</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-white">
    <custom-navbar></custom-navbar>
    
    <!-- About Hero -->
    <section class="bg-gradient-to-br from-blue-50 to-indigo-100 py-20">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center">
                <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
                    About Peec AI
                </h1>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
            We're building the leading marketing engine for the AI search platform shift
        </p>
    </div>
</section>

<!-- Mission Section -->
<section class="py-20 bg-white">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
            <div>
                <h2 class="text-3xl font-bold text-gray-900 mb-6">
                We've raised €10m in capital from top-tier investors
            </h2>
            <p class="text-lg text-gray-600 mb-8">
                    AI search is replacing traditional search, and we're in the top 1% of startups in terms of growth.
                </p>
                <a href="https://peec.ai/careers" class="bg-blue-600 text-white px-8 py-4 rounded-lg font-semibold hover:bg-blue-700 transition duration-300 inline-block">
                We are hiring →
            </a>
        </div>
        <div>
            <img src="https://framerusercontent.com/images/VVdHL08GCNnYdeMbKBMubJmQznk.jpeg?width=3790&height=2667" alt="Team" class="rounded-xl shadow-lg">
        </div>
    </div>
</section>

<!-- Team Culture -->
<section class="py-20 bg-gray-50">
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div class="text-center mb-16">
            <h2 class="text-3xl font-bold text-gray-900 mb-4">
            Come build, learn, and grow with us
        </h2>
        <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                A high-energy team in Berlin that's redefining how brands show up in AI search
            </p>
        </div>
        <img src="https://framerusercontent.com/images/YqYDTba0WbyJsfjmRAFAE2mCHZM.webp?scale-down-to=1024&width=1364&height=904" alt="Berlin Office" class="rounded-xl shadow-lg w-full">
    </div>
</section>

<custom-footer></custom-footer>

<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>