-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
107 lines (106 loc) · 3.77 KB
/
about.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
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - संवाद.AI</title>
<style>
body {
background-color: #222;
color: #fff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 0 20px;
text-align: center;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
p {
font-size: 18px;
line-height: 1.6;
color: #ccc;
}
.team-section {
margin-top: 50px;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.team-member {
margin: 20px;
padding: 20px;
background-color: #333;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
text-align: center;
transition: transform 0.3s ease;
width: 200px;
}
.team-member:hover {
transform: translateY(-5px);
}
.team-member img {
border-radius: 50%;
max-width: 100px;
height: auto;
margin-bottom: 10px;
border: 4px solid #444;
transition: transform 0.3s ease;
}
.team-member img:hover {
transform: scale(1.1);
}
.team-member p {
font-size: 16px;
margin: 0;
color: #fff;
}
.team-member .role {
font-style: italic;
color: #999;
}
</style>
</head>
<body>
<div class="container">
<h1>About संवाद.AI</h1>
<p>संवाद.AI is a platform dedicated to providing efficient and secure conversion of chat messages into PDF format. We strive to offer a seamless experience for our users, ensuring that important conversations can be archived and shared easily.</p>
<div class="team-section">
<div class="team-member">
<img src="/images/others/sanidhya.jpg" alt="Sanidhya Soni">
<p>Sanidhya Soni</p>
<p class="role">Co-founder & CEO</p>
<p>Sanidhya is passionate about technology and has years of experience in software development.</p>
</div>
<div class="team-member">
<img src="images/others/Akshat.png" alt="Akshat Shukla">
<p>Akshat Shukla</p>
<p class="role">Co-founder & CTO</p>
<p>Akshat is an expert in backend development and leads our technical team with his innovative ideas.</p>
</div>
<div class="team-member">
<img src="images/others/Rishabh.png" alt="Rishabh Jain">
<p>Rishabh Jain</p>
<p class="role">Lead Designer</p>
<p>Rishabh brings creativity and a keen eye for design to our projects, ensuring an intuitive user experience.</p>
</div>
<div class="team-member">
<img src="images/others/murlidhar.png" alt="Murlidhar Carpenter">
<p>Murlidhar Carpenter</p>
<p class="role">Software Engineer</p>
<p>Murlidhar is a dedicated member of our development team, specializing in frontend technologies.</p>
</div>
</div>
</div>
</body>
</html>