-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
115 lines (107 loc) · 4.22 KB
/
about.php
File metadata and controls
115 lines (107 loc) · 4.22 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
<?php include 'includes/header.php'; ?>
<link rel="stylesheet" href="assets/css/about.css">
<link rel="stylesheet" type="text/css" href="assets/css/header.css">
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-content">
<h1>About MindMatrix.io</h1>
<p>We are a team of innovators, thinkers, and creators dedicated to transforming the future with AI-driven solutions.</p>
<a href="#team" class="btn-hero">Meet Our Team</a>
</div>
</section>
<!-- Mission Section -->
<section class="mission-section">
<div class="mission-content">
<h2>Our Mission</h2>
<p>At MindMatrix.io, our mission is to empower businesses and individuals with cutting-edge AI technologies that drive growth, efficiency, and innovation.</p>
</div>
</section>
<!-- Team Section -->
<section id="team" class="team-section">
<h2>Our Team</h2>
<div class="team-cards">
<div class="team-card">
<img src="assets/images/Gaurav.jpg" alt="Gaurav Salunkhe">
<h3>Gaurav Salunkhe</h3>
<p class="role">Co-Founder & CEO</p>
<p class="bio">Expert in AI and Web Development, transforming ideas into impactful technology.</p>
<div class="social-links">
<a href="#" class="social-icon"><i class="fab fa-linkedin"></i></a>
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="team-card">
<img src="assets/images/jyoti.jpg" alt="Jyoti Chavan">
<h3>Jyoti Chavan</h3>
<p class="role">Co-Founder & Visionary</p>
<p class="bio">Innovative strategist shaping the future of AI-powered solutions.</p>
<div class="social-links">
<a href="#" class="social-icon"><i class="fab fa-linkedin"></i></a>
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</section>
<!-- Values Section -->
<section class="values-section">
<h2>Our Core Values</h2>
<div class="values-grid">
<div class="value-card">
<i class="fas fa-lightbulb"></i>
<h3>Innovation</h3>
<p>We constantly push boundaries to deliver groundbreaking solutions.</p>
</div>
<div class="value-card">
<i class="fas fa-users"></i>
<h3>Collaboration</h3>
<p>We believe in the power of teamwork to achieve extraordinary results.</p>
</div>
<div class="value-card">
<i class="fas fa-hand-holding-heart"></i>
<h3>Integrity</h3>
<p>We uphold the highest standards of honesty and transparency.</p>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="testimonials-section">
<h2>What Our Clients Say</h2>
<div class="testimonial-carousel">
<div class="testimonial">
<p>"MindMatrix.io transformed our business with top-notch AI solutions!"</p>
<h4>- Client A</h4>
</div>
<div class="testimonial">
<p>"Their expertise in AI and strategy is unmatched!"</p>
<h4>- Client B</h4>
</div>
<div class="testimonial">
<p>"A fantastic team delivering real impact!"</p>
<h4>- Client C</h4>
</div>
</div>
<a href="contact.php" class="btn-testimonial">Submit Your Testimonial</a>
</section>
<!-- Join Us Section -->
<section class="join-us-section">
<h2>Join Our Team</h2>
<p>We’re growing! Be part of our AI revolution.</p>
<div class="job-roles">
<div class="job-role">
<h3>AI Developer</h3>
<p>Work on cutting-edge AI projects.</p>
<a href="#" class="btn-apply">Apply Now</a>
</div>
<div class="job-role">
<h3>UI/UX Designer</h3>
<p>Design intuitive and user-friendly interfaces.</p>
<a href="#" class="btn-apply">Apply Now</a>
</div>
<div class="job-role">
<h3>Marketing Specialist</h3>
<p>Drive our brand’s growth and visibility.</p>
<a href="#" class="btn-apply">Apply Now</a>
</div>
</div>
</section>
<?php include 'includes/footer.php'; ?>