-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
93 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<!-- Footer --> | ||
<footer class="bg-gray-800 text-white p-5 text-center"> | ||
<div class="container mx-auto"> | ||
<p class="text-xl">© 2024 XBrand. All rights reserved.</p> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<nav class="bg-gray-800 text-white p-5 shadow-lg"> | ||
<div class="container mx-auto flex justify-between items-center"> | ||
<div class="text-2xl font-extrabold uppercase"> | ||
XBrand | ||
</div> | ||
<nav> | ||
<ul class="flex space-x-6 text-xl"> | ||
<li><a href="/" class="hover:text-gray-400">Home</a></li> | ||
<li><a href="/about" class="hover:text-gray-400">About</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<div class="container mx-auto p-10"> | ||
<h1 class="text-4xl font-bold mb-4">About Us</h1> | ||
<p class="text-lg mb-6">We are a dedicated team committed to delivering the best services to our customers. Our mission is to create innovative solutions that enhance user experiences.</p> | ||
<h2 class="text-3xl font-semibold mb-2">Our Mission</h2> | ||
<p class="mb-4">To provide high-quality products that improve the lives of our customers and foster a culture of innovation and excellence.</p> | ||
<h2 class="text-3xl font-semibold mb-2">Our Values</h2> | ||
<ul class="list-disc list-inside mb-4"> | ||
<li>Integrity</li> | ||
<li>Innovation</li> | ||
<li>Customer Satisfaction</li> | ||
<li>Teamwork</li> | ||
</ul> | ||
<h2 class="text-3xl font-semibold mb-2">Meet the Team</h2> | ||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4"> | ||
<div class="p-4 border rounded"> | ||
<h3 class="font-bold">Drew Njoo</h3> | ||
<p>CEO</p> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters