forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
104 lines (101 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us - BuddyTrail</title>
<link rel="stylesheet" href="about.css" />
<link rel="icon" href="https://img.icons8.com/?size=100&id=11808&format=png&color=000000">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="img/logo.png" id="logo-web" alt="BuddyTrail Logo" />
<h1 id="logo">BuddyTrail</h1>
</div>
<ul class="nav-links">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link active">About Us</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li><a href="auth.html" class="btn-primary">Sign In</a></li>
</ul>
</nav>
</div>
</header>
<main class="main-content">
<div class="content-container">
<h1>Discover BuddyTrail</h1>
<p>
Welcome to BuddyTrail – your ultimate travel companion! 🌍✈️ We're here to transform your travel dreams into
unforgettable experiences. Whether you're planning a family vacation, a trip with friends, or a solo adventure,
BuddyTrail is your go-to platform for discovering amazing destinations, finding the best accommodations, and
booking affordable flights with ease.
</p>
<p>
Our mission is to provide extraordinary travel experiences for our customers, ensuring that every journey is not
just a trip, but a story waiting to be told. We believe in the power of travel to broaden horizons, create
lasting memories, and bring people together.
</p>
<h2>Our Core Values</h2>
<div class="values-container">
<div class="value-item">
<i class="fas fa-handshake"></i>
<h3>Integrity</h3>
<p>We build trust through transparent and honest practices.</p>
</div>
<div class="value-item">
<i class="fas fa-lightbulb"></i>
<h3>Innovation</h3>
<p>We constantly evolve to enhance your travel experience.</p>
</div>
<div class="value-item">
<i class="fas fa-users"></i>
<h3>Community</h3>
<p>We foster connections among global travelers.</p>
</div>
</div>
<p>
At BuddyTrail, we're more than just a travel platform. We're a community of passionate explorers, dedicated to
curating unique experiences, providing personalized recommendations, and offering valuable resources that
empower you to navigate the world with confidence and excitement.
</p>
<h2>Meet Our Team</h2>
<p>
Behind BuddyTrail is a diverse team of travel enthusiasts, tech innovators, and customer experience experts.
United by our love for exploration and commitment to excellence, we work tirelessly to ensure your journey with
us is seamless, inspiring, and unforgettable.
</p>
<a href="team.html" class="cta-button">Meet the BuddyTrail Team</a>
</div>
</main>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column-l">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: +123 456 7890</p>
</div>
<div class="footer-column-r">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="https://discord.com/invite/priyaghosal" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://twitter.com/PriyaGhosa39968" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/PriyaGhosal/BuddyTrail" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/priya-ghosal-785771286/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<p class="copyright">© 2024 BuddyTrail | All rights reserved.</p>
</div>
</footer>
</body>
</html>