Create a creative agency portfolio with animated hero section, featured projects showcase with case studies, services we provide, team members grid, client testimonials slider, awards section, and get a quote form.
Browse files- README.md +7 -4
- components/footer.js +162 -0
- components/navbar.js +163 -0
- index.html +443 -19
- script.js +52 -0
- style.css +28 -19
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji: 🏢
|
| 4 |
colorFrom: yellow
|
| 5 |
-
colorTo:
|
|
|
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: PixelPioneers Creative Studio 🚀
|
|
|
|
| 3 |
colorFrom: yellow
|
| 4 |
+
colorTo: gray
|
| 5 |
+
emoji: 🐳
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
footer {
|
| 7 |
+
background: #111827;
|
| 8 |
+
color: white;
|
| 9 |
+
padding: 4rem 2rem;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.footer-container {
|
| 13 |
+
max-width: 1200px;
|
| 14 |
+
margin: 0 auto;
|
| 15 |
+
display: grid;
|
| 16 |
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
| 17 |
+
gap: 2rem;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.footer-logo {
|
| 21 |
+
font-size: 1.5rem;
|
| 22 |
+
font-weight: 700;
|
| 23 |
+
margin-bottom: 1rem;
|
| 24 |
+
display: inline-block;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.footer-logo span {
|
| 28 |
+
color: #818cf8;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.footer-description {
|
| 32 |
+
color: #9ca3af;
|
| 33 |
+
margin-bottom: 1.5rem;
|
| 34 |
+
line-height: 1.6;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.social-links {
|
| 38 |
+
display: flex;
|
| 39 |
+
gap: 1rem;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.social-links a {
|
| 43 |
+
color: white;
|
| 44 |
+
background: rgba(255, 255, 255, 0.1);
|
| 45 |
+
width: 40px;
|
| 46 |
+
height: 40px;
|
| 47 |
+
border-radius: 50%;
|
| 48 |
+
display: flex;
|
| 49 |
+
align-items: center;
|
| 50 |
+
justify-content: center;
|
| 51 |
+
transition: all 0.2s;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
.social-links a:hover {
|
| 55 |
+
background: #4f46e5;
|
| 56 |
+
transform: translateY(-2px);
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
.footer-heading {
|
| 60 |
+
font-size: 1.125rem;
|
| 61 |
+
font-weight: 600;
|
| 62 |
+
margin-bottom: 1.5rem;
|
| 63 |
+
color: white;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.footer-links {
|
| 67 |
+
list-style: none;
|
| 68 |
+
padding: 0;
|
| 69 |
+
margin: 0;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
.footer-links li {
|
| 73 |
+
margin-bottom: 0.75rem;
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
.footer-links a {
|
| 77 |
+
color: #9ca3af;
|
| 78 |
+
text-decoration: none;
|
| 79 |
+
transition: color 0.2s;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
.footer-links a:hover {
|
| 83 |
+
color: white;
|
| 84 |
+
}
|
| 85 |
+
|
| 86 |
+
.copyright {
|
| 87 |
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
| 88 |
+
padding-top: 2rem;
|
| 89 |
+
margin-top: 2rem;
|
| 90 |
+
text-align: center;
|
| 91 |
+
color: #9ca3af;
|
| 92 |
+
font-size: 0.875rem;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
@media (max-width: 768px) {
|
| 96 |
+
.footer-container {
|
| 97 |
+
grid-template-columns: 1fr;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
.footer-column {
|
| 101 |
+
margin-bottom: 2rem;
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
</style>
|
| 105 |
+
<footer>
|
| 106 |
+
<div class="footer-container">
|
| 107 |
+
<div class="footer-column">
|
| 108 |
+
<a href="/" class="footer-logo">
|
| 109 |
+
Pixel<span>Pioneers</span>
|
| 110 |
+
</a>
|
| 111 |
+
<p class="footer-description">
|
| 112 |
+
We craft digital experiences that inspire, engage, and convert.
|
| 113 |
+
</p>
|
| 114 |
+
<div class="social-links">
|
| 115 |
+
<a href="#"><i data-feather="twitter"></i></a>
|
| 116 |
+
<a href="#"><i data-feather="instagram"></i></a>
|
| 117 |
+
<a href="#"><i data-feather="linkedin"></i></a>
|
| 118 |
+
<a href="#"><i data-feather="dribbble"></i></a>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
|
| 122 |
+
<div class="footer-column">
|
| 123 |
+
<h3 class="footer-heading">Services</h3>
|
| 124 |
+
<ul class="footer-links">
|
| 125 |
+
<li><a href="#">UI/UX Design</a></li>
|
| 126 |
+
<li><a href="#">Web Development</a></li>
|
| 127 |
+
<li><a href="#">Mobile Apps</a></li>
|
| 128 |
+
<li><a href="#">Branding</a></li>
|
| 129 |
+
<li><a href="#">Digital Strategy</a></li>
|
| 130 |
+
</ul>
|
| 131 |
+
</div>
|
| 132 |
+
|
| 133 |
+
<div class="footer-column">
|
| 134 |
+
<h3 class="footer-heading">Company</h3>
|
| 135 |
+
<ul class="footer-links">
|
| 136 |
+
<li><a href="#">About Us</a></li>
|
| 137 |
+
<li><a href="#">Our Team</a></li>
|
| 138 |
+
<li><a href="#">Careers</a></li>
|
| 139 |
+
<li><a href="#">Blog</a></li>
|
| 140 |
+
<li><a href="#">Contact</a></li>
|
| 141 |
+
</ul>
|
| 142 |
+
</div>
|
| 143 |
+
|
| 144 |
+
<div class="footer-column">
|
| 145 |
+
<h3 class="footer-heading">Legal</h3>
|
| 146 |
+
<ul class="footer-links">
|
| 147 |
+
<li><a href="#">Privacy Policy</a></li>
|
| 148 |
+
<li><a href="#">Terms of Service</a></li>
|
| 149 |
+
<li><a href="#">Cookie Policy</a></li>
|
| 150 |
+
</ul>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
|
| 154 |
+
<div class="copyright">
|
| 155 |
+
© ${new Date().getFullYear()} PixelPioneers Creative Studio. All rights reserved.
|
| 156 |
+
</div>
|
| 157 |
+
</footer>
|
| 158 |
+
`;
|
| 159 |
+
}
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
nav {
|
| 7 |
+
position: fixed;
|
| 8 |
+
top: 0;
|
| 9 |
+
left: 0;
|
| 10 |
+
right: 0;
|
| 11 |
+
background: rgba(255, 255, 255, 0.95);
|
| 12 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
| 13 |
+
padding: 1rem 2rem;
|
| 14 |
+
display: flex;
|
| 15 |
+
justify-content: space-between;
|
| 16 |
+
align-items: center;
|
| 17 |
+
z-index: 1000;
|
| 18 |
+
transition: all 0.3s ease;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
nav.scrolled {
|
| 22 |
+
background: white;
|
| 23 |
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.logo {
|
| 27 |
+
color: #111827;
|
| 28 |
+
font-weight: 700;
|
| 29 |
+
font-size: 1.5rem;
|
| 30 |
+
text-decoration: none;
|
| 31 |
+
display: flex;
|
| 32 |
+
align-items: center;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.logo span {
|
| 36 |
+
color: #4f46e5;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.nav-links {
|
| 40 |
+
display: flex;
|
| 41 |
+
gap: 2rem;
|
| 42 |
+
list-style: none;
|
| 43 |
+
margin: 0;
|
| 44 |
+
padding: 0;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
.nav-links a {
|
| 48 |
+
color: #374151;
|
| 49 |
+
text-decoration: none;
|
| 50 |
+
font-weight: 500;
|
| 51 |
+
font-size: 1rem;
|
| 52 |
+
transition: color 0.2s;
|
| 53 |
+
position: relative;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.nav-links a:hover {
|
| 57 |
+
color: #4f46e5;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.nav-links a::after {
|
| 61 |
+
content: '';
|
| 62 |
+
position: absolute;
|
| 63 |
+
bottom: -4px;
|
| 64 |
+
left: 0;
|
| 65 |
+
width: 0;
|
| 66 |
+
height: 2px;
|
| 67 |
+
background: #4f46e5;
|
| 68 |
+
transition: width 0.3s;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
.nav-links a:hover::after {
|
| 72 |
+
width: 100%;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.cta-button {
|
| 76 |
+
background: #4f46e5;
|
| 77 |
+
color: white;
|
| 78 |
+
padding: 0.5rem 1.5rem;
|
| 79 |
+
border-radius: 0.375rem;
|
| 80 |
+
font-weight: 500;
|
| 81 |
+
transition: all 0.2s;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
.cta-button:hover {
|
| 85 |
+
background: #4338ca;
|
| 86 |
+
transform: translateY(-2px);
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
.mobile-menu-button {
|
| 90 |
+
display: none;
|
| 91 |
+
background: none;
|
| 92 |
+
border: none;
|
| 93 |
+
color: #111827;
|
| 94 |
+
cursor: pointer;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
@media (max-width: 768px) {
|
| 98 |
+
.mobile-menu-button {
|
| 99 |
+
display: block;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
.nav-links {
|
| 103 |
+
display: none;
|
| 104 |
+
position: absolute;
|
| 105 |
+
top: 100%;
|
| 106 |
+
left: 0;
|
| 107 |
+
right: 0;
|
| 108 |
+
background: white;
|
| 109 |
+
flex-direction: column;
|
| 110 |
+
padding: 1rem;
|
| 111 |
+
gap: 1rem;
|
| 112 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
.nav-links.active {
|
| 116 |
+
display: flex;
|
| 117 |
+
}
|
| 118 |
+
}
|
| 119 |
+
</style>
|
| 120 |
+
<nav>
|
| 121 |
+
<a href="/" class="logo">
|
| 122 |
+
Pixel<span>Pioneers</span>
|
| 123 |
+
</a>
|
| 124 |
+
|
| 125 |
+
<button class="mobile-menu-button">
|
| 126 |
+
<i data-feather="menu"></i>
|
| 127 |
+
</button>
|
| 128 |
+
|
| 129 |
+
<ul class="nav-links">
|
| 130 |
+
<li><a href="#work">Work</a></li>
|
| 131 |
+
<li><a href="#services">Services</a></li>
|
| 132 |
+
<li><a href="#team">Team</a></li>
|
| 133 |
+
<li><a href="#about">About</a></li>
|
| 134 |
+
<li><a href="#contact" class="cta-button">Contact</a></li>
|
| 135 |
+
</ul>
|
| 136 |
+
</nav>
|
| 137 |
+
`;
|
| 138 |
+
|
| 139 |
+
// Add scroll behavior for navbar
|
| 140 |
+
const nav = this.shadowRoot.querySelector('nav');
|
| 141 |
+
window.addEventListener('scroll', () => {
|
| 142 |
+
if (window.scrollY > 10) {
|
| 143 |
+
nav.classList.add('scrolled');
|
| 144 |
+
} else {
|
| 145 |
+
nav.classList.remove('scrolled');
|
| 146 |
+
}
|
| 147 |
+
});
|
| 148 |
+
|
| 149 |
+
// Mobile menu toggle
|
| 150 |
+
const mobileButton = this.shadowRoot.querySelector('.mobile-menu-button');
|
| 151 |
+
const navLinks = this.shadowRoot.querySelector('.nav-links');
|
| 152 |
+
|
| 153 |
+
mobileButton.addEventListener('click', () => {
|
| 154 |
+
navLinks.classList.toggle('active');
|
| 155 |
+
mobileButton.innerHTML = navLinks.classList.contains('active')
|
| 156 |
+
? '<i data-feather="x"></i>'
|
| 157 |
+
: '<i data-feather="menu"></i>';
|
| 158 |
+
feather.replace();
|
| 159 |
+
});
|
| 160 |
+
}
|
| 161 |
+
}
|
| 162 |
+
|
| 163 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,443 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>PixelPioneers - Creative Studio</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
|
| 12 |
+
</head>
|
| 13 |
+
<body class="bg-gray-50">
|
| 14 |
+
<custom-navbar></custom-navbar>
|
| 15 |
+
|
| 16 |
+
<!-- Hero Section with Vanta.js Animation -->
|
| 17 |
+
<section id="hero" class="relative h-screen flex items-center justify-center overflow-hidden">
|
| 18 |
+
<div class="absolute inset-0 z-0" id="vanta-bg"></div>
|
| 19 |
+
<div class="z-10 text-center px-4">
|
| 20 |
+
<h1 class="text-5xl md:text-7xl font-bold text-white mb-6">We Craft Digital Magic</h1>
|
| 21 |
+
<p class="text-xl md:text-2xl text-white mb-8 max-w-2xl mx-auto">PixelPioneers transforms ideas into stunning digital experiences that captivate and convert.</p>
|
| 22 |
+
<a href="#work" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full transition duration-300 inline-block">Explore Our Work</a>
|
| 23 |
+
</div>
|
| 24 |
+
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
|
| 25 |
+
<i data-feather="chevron-down" class="text-white w-8 h-8"></i>
|
| 26 |
+
</div>
|
| 27 |
+
</section>
|
| 28 |
+
|
| 29 |
+
<!-- Featured Projects -->
|
| 30 |
+
<section id="work" class="py-20 px-4 sm:px-6 lg:px-8">
|
| 31 |
+
<div class="max-w-7xl mx-auto">
|
| 32 |
+
<div class="text-center mb-16">
|
| 33 |
+
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Featured Projects</h2>
|
| 34 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Our portfolio showcases innovative solutions that drive real business results.</p>
|
| 35 |
+
</div>
|
| 36 |
+
|
| 37 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 38 |
+
<!-- Project 1 -->
|
| 39 |
+
<div class="group relative overflow-hidden rounded-xl shadow-lg transition-transform duration-300 hover:-translate-y-2">
|
| 40 |
+
<div class="h-60 bg-gradient-to-r from-purple-500 to-pink-500 flex items-center justify-center">
|
| 41 |
+
<span class="text-white font-bold text-xl">Project Aurora</span>
|
| 42 |
+
</div>
|
| 43 |
+
<div class="p-6 bg-white">
|
| 44 |
+
<h3 class="text-xl font-bold text-gray-900 mb-2">E-commerce Platform</h3>
|
| 45 |
+
<p class="text-gray-600 mb-4">Revolutionary platform that increased conversions by 230%</p>
|
| 46 |
+
<a href="/project-aurora.html" class="text-indigo-600 font-medium hover:text-indigo-800 inline-flex items-center">
|
| 47 |
+
View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
|
| 48 |
+
</a>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
|
| 52 |
+
<!-- Project 2 -->
|
| 53 |
+
<div class="group relative overflow-hidden rounded-xl shadow-lg transition-transform duration-300 hover:-translate-y-2">
|
| 54 |
+
<div class="h-60 bg-gradient-to-r from-blue-500 to-teal-400 flex items-center justify-center">
|
| 55 |
+
<span class="text-white font-bold text-xl">Nova Dashboard</span>
|
| 56 |
+
</div>
|
| 57 |
+
<div class="p-6 bg-white">
|
| 58 |
+
<h3 class="text-xl font-bold text-gray-900 mb-2">Data Visualization</h3>
|
| 59 |
+
<p class="text-gray-600 mb-4">Interactive analytics for enterprise decision making</p>
|
| 60 |
+
<a href="/project-nova.html" class="text-indigo-600 font-medium hover:text-indigo-800 inline-flex items-center">
|
| 61 |
+
View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
|
| 62 |
+
</a>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
|
| 66 |
+
<!-- Project 3 -->
|
| 67 |
+
<div class="group relative overflow-hidden rounded-xl shadow-lg transition-transform duration-300 hover:-translate-y-2">
|
| 68 |
+
<div class="h-60 bg-gradient-to-r from-orange-500 to-yellow-400 flex items-center justify-center">
|
| 69 |
+
<span class="text-white font-bold text-xl">Lumina App</span>
|
| 70 |
+
</div>
|
| 71 |
+
<div class="p-6 bg-white">
|
| 72 |
+
<h3 class="text-xl font-bold text-gray-900 mb-2">Mobile Application</h3>
|
| 73 |
+
<p class="text-gray-600 mb-4">Health & wellness app with 500k+ downloads</p>
|
| 74 |
+
<a href="/project-lumina.html" class="text-indigo-600 font-medium hover:text-indigo-800 inline-flex items-center">
|
| 75 |
+
View Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
|
| 76 |
+
</a>
|
| 77 |
+
</div>
|
| 78 |
+
</div>
|
| 79 |
+
</div>
|
| 80 |
+
|
| 81 |
+
<div class="text-center mt-12">
|
| 82 |
+
<a href="/portfolio.html" class="inline-flex items-center font-medium text-indigo-600 hover:text-indigo-800">
|
| 83 |
+
View Full Portfolio <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
|
| 84 |
+
</a>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
</section>
|
| 88 |
+
|
| 89 |
+
<!-- Services -->
|
| 90 |
+
<section class="py-20 bg-gray-100">
|
| 91 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 92 |
+
<div class="text-center mb-16">
|
| 93 |
+
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Our Services</h2>
|
| 94 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive solutions tailored to your business needs</p>
|
| 95 |
+
</div>
|
| 96 |
+
|
| 97 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 98 |
+
<!-- Service 1 -->
|
| 99 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 100 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 101 |
+
<i data-feather="layout" class="text-indigo-600 w-6 h-6"></i>
|
| 102 |
+
</div>
|
| 103 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">UI/UX Design</h3>
|
| 104 |
+
<p class="text-gray-600">Beautiful, intuitive interfaces designed for optimal user experience and conversion rates.</p>
|
| 105 |
+
</div>
|
| 106 |
+
|
| 107 |
+
<!-- Service 2 -->
|
| 108 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 109 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 110 |
+
<i data-feather="code" class="text-indigo-600 w-6 h-6"></i>
|
| 111 |
+
</div>
|
| 112 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Web Development</h3>
|
| 113 |
+
<p class="text-gray-600">Custom web applications built with cutting-edge technologies for maximum performance.</p>
|
| 114 |
+
</div>
|
| 115 |
+
|
| 116 |
+
<!-- Service 3 -->
|
| 117 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 118 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 119 |
+
<i data-feather="smartphone" class="text-indigo-600 w-6 h-6"></i>
|
| 120 |
+
</div>
|
| 121 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Mobile Apps</h3>
|
| 122 |
+
<p class="text-gray-600">Native and cross-platform mobile solutions for iOS and Android with flawless UX.</p>
|
| 123 |
+
</div>
|
| 124 |
+
|
| 125 |
+
<!-- Service 4 -->
|
| 126 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 127 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 128 |
+
<i data-feather="bar-chart-2" class="text-indigo-600 w-6 h-6"></i>
|
| 129 |
+
</div>
|
| 130 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Digital Strategy</h3>
|
| 131 |
+
<p class="text-gray-600">Data-driven strategies to grow your digital presence and achieve business objectives.</p>
|
| 132 |
+
</div>
|
| 133 |
+
|
| 134 |
+
<!-- Service 5 -->
|
| 135 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 136 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 137 |
+
<i data-feather="shopping-bag" class="text-indigo-600 w-6 h-6"></i>
|
| 138 |
+
</div>
|
| 139 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">E-commerce</h3>
|
| 140 |
+
<p class="text-gray-600">Scalable online stores with conversion-optimized flows and seamless checkout experiences.</p>
|
| 141 |
+
</div>
|
| 142 |
+
|
| 143 |
+
<!-- Service 6 -->
|
| 144 |
+
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-shadow duration-300">
|
| 145 |
+
<div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6">
|
| 146 |
+
<i data-feather="search" class="text-indigo-600 w-6 h-6"></i>
|
| 147 |
+
</div>
|
| 148 |
+
<h3 class="text-xl font-bold text-gray-900 mb-3">Branding</h3>
|
| 149 |
+
<p class="text-gray-600">Comprehensive brand identity systems that communicate your unique value proposition.</p>
|
| 150 |
+
</div>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
</section>
|
| 154 |
+
|
| 155 |
+
<!-- Team -->
|
| 156 |
+
<section class="py-20">
|
| 157 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 158 |
+
<div class="text-center mb-16">
|
| 159 |
+
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Meet The Team</h2>
|
| 160 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">The creative minds behind our award-winning work</p>
|
| 161 |
+
</div>
|
| 162 |
+
|
| 163 |
+
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
|
| 164 |
+
<!-- Team Member 1 -->
|
| 165 |
+
<div class="text-center">
|
| 166 |
+
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden shadow-lg">
|
| 167 |
+
<img src="http://static.photos/people/320x240/101" alt="Alex Johnson" class="w-full h-full object-cover">
|
| 168 |
+
</div>
|
| 169 |
+
<h3 class="text-xl font-bold text-gray-900">Alex Johnson</h3>
|
| 170 |
+
<p class="text-indigo-600 mb-2">Creative Director</p>
|
| 171 |
+
<p class="text-gray-600">15+ years shaping digital experiences for Fortune 500 companies</p>
|
| 172 |
+
</div>
|
| 173 |
+
|
| 174 |
+
<!-- Team Member 2 -->
|
| 175 |
+
<div class="text-center">
|
| 176 |
+
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden shadow-lg">
|
| 177 |
+
<img src="http://static.photos/people/320x240/102" alt="Sarah Chen" class="w-full h-full object-cover">
|
| 178 |
+
</div>
|
| 179 |
+
<h3 class="text-xl font-bold text-gray-900">Sarah Chen</h3>
|
| 180 |
+
<p class="text-indigo-600 mb-2">Lead Designer</p>
|
| 181 |
+
<p class="text-gray-600">Specializes in creating emotionally resonant user interfaces</p>
|
| 182 |
+
</div>
|
| 183 |
+
|
| 184 |
+
<!-- Team Member 3 -->
|
| 185 |
+
<div class="text-center">
|
| 186 |
+
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden shadow-lg">
|
| 187 |
+
<img src="http://static.photos/people/320x240/103" alt="Michael Rodriguez" class="w-full h-full object-cover">
|
| 188 |
+
</div>
|
| 189 |
+
<h3 class="text-xl font-bold text-gray-900">Michael Rodriguez</h3>
|
| 190 |
+
<p class="text-indigo-600 mb-2">Tech Lead</p>
|
| 191 |
+
<p class="text-gray-600">Full-stack wizard with expertise in scalable architecture</p>
|
| 192 |
+
</div>
|
| 193 |
+
|
| 194 |
+
<!-- Team Member 4 -->
|
| 195 |
+
<div class="text-center">
|
| 196 |
+
<div class="w-48 h-48 mx-auto mb-6 rounded-full overflow-hidden shadow-lg">
|
| 197 |
+
<img src="http://static.photos/people/320x240/104" alt="Priya Patel" class="w-full h-full object-cover">
|
| 198 |
+
</div>
|
| 199 |
+
<h3 class="text-xl font-bold text-gray-900">Priya Patel</h3>
|
| 200 |
+
<p class="text-indigo-600 mb-2">UX Researcher</p>
|
| 201 |
+
<p class="text-gray-600">Uncovers user insights that drive product innovation</p>
|
| 202 |
+
</div>
|
| 203 |
+
</div>
|
| 204 |
+
</div>
|
| 205 |
+
</section>
|
| 206 |
+
|
| 207 |
+
<!-- Testimonials -->
|
| 208 |
+
<section class="py-20 bg-indigo-50">
|
| 209 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 210 |
+
<div class="text-center mb-16">
|
| 211 |
+
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Client Testimonials</h2>
|
| 212 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">What our clients say about working with us</p>
|
| 213 |
+
</div>
|
| 214 |
+
|
| 215 |
+
<div class="relative max-w-4xl mx-auto">
|
| 216 |
+
<div class="testimonial-slider overflow-hidden">
|
| 217 |
+
<div class="flex transition-transform duration-500 ease-in-out">
|
| 218 |
+
<!-- Testimonial 1 -->
|
| 219 |
+
<div class="testimonial-slide min-w-full px-4">
|
| 220 |
+
<div class="bg-white p-8 rounded-xl shadow-md">
|
| 221 |
+
<div class="flex items-center mb-6">
|
| 222 |
+
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
|
| 223 |
+
<img src="http://static.photos/people/320x240/201" alt="James Wilson" class="w-full h-full object-cover">
|
| 224 |
+
</div>
|
| 225 |
+
<div>
|
| 226 |
+
<h4 class="font-bold text-gray-900">James Wilson</h4>
|
| 227 |
+
<p class="text-indigo-600">CEO, TechNova</p>
|
| 228 |
+
</div>
|
| 229 |
+
</div>
|
| 230 |
+
<p class="text-gray-700 italic mb-6">"Working with PixelPioneers transformed our digital presence. Their strategic approach and creative execution resulted in a 300% increase in our online engagement."</p>
|
| 231 |
+
<div class="flex">
|
| 232 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 233 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 234 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 235 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 236 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5"></i>
|
| 237 |
+
</div>
|
| 238 |
+
</div>
|
| 239 |
+
</div>
|
| 240 |
+
|
| 241 |
+
<!-- Testimonial 2 -->
|
| 242 |
+
<div class="testimonial-slide min-w-full px-4">
|
| 243 |
+
<div class="bg-white p-8 rounded-xl shadow-md">
|
| 244 |
+
<div class="flex items-center mb-6">
|
| 245 |
+
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
|
| 246 |
+
<img src="http://static.photos/people/320x240/202" alt="Emily Zhang" class="w-full h-full object-cover">
|
| 247 |
+
</div>
|
| 248 |
+
<div>
|
| 249 |
+
<h4 class="font-bold text-gray-900">Emily Zhang</h4>
|
| 250 |
+
<p class="text-indigo-600">CMO, LuxeLiving</p>
|
| 251 |
+
</div>
|
| 252 |
+
</div>
|
| 253 |
+
<p class="text-gray-700 italic mb-6">"The team at PixelPioneers exceeded all our expectations. Their attention to detail and user-centric approach made our app launch a tremendous success."</p>
|
| 254 |
+
<div class="flex">
|
| 255 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 256 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 257 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 258 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 259 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5"></i>
|
| 260 |
+
</div>
|
| 261 |
+
</div>
|
| 262 |
+
</div>
|
| 263 |
+
|
| 264 |
+
<!-- Testimonial 3 -->
|
| 265 |
+
<div class="testimonial-slide min-w-full px-4">
|
| 266 |
+
<div class="bg-white p-8 rounded-xl shadow-md">
|
| 267 |
+
<div class="flex items-center mb-6">
|
| 268 |
+
<div class="w-16 h-16 rounded-full overflow-hidden mr-4">
|
| 269 |
+
<img src="http://static.photos/people/320x240/203" alt="David Miller" class="w-full h-full object-cover">
|
| 270 |
+
</div>
|
| 271 |
+
<div>
|
| 272 |
+
<h4 class="font-bold text-gray-900">David Miller</h4>
|
| 273 |
+
<p class="text-indigo-600">Founder, GreenHarvest</p>
|
| 274 |
+
</div>
|
| 275 |
+
</div>
|
| 276 |
+
<p class="text-gray-700 italic mb-6">"From initial concept to final delivery, PixelPioneers demonstrated exceptional professionalism and creativity. Our e-commerce platform now outperforms all competitors."</p>
|
| 277 |
+
<div class="flex">
|
| 278 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 279 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 280 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 281 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5 mr-1"></i>
|
| 282 |
+
<i data-feather="star" class="text-yellow-400 w-5 h-5"></i>
|
| 283 |
+
</div>
|
| 284 |
+
</div>
|
| 285 |
+
</div>
|
| 286 |
+
</div>
|
| 287 |
+
</div>
|
| 288 |
+
|
| 289 |
+
<div class="flex justify-center mt-8">
|
| 290 |
+
<button class="testimonial-prev mx-2 p-2 rounded-full bg-white shadow-md hover:bg-indigo-100 transition-colors">
|
| 291 |
+
<i data-feather="chevron-left" class="w-5 h-5 text-indigo-600"></i>
|
| 292 |
+
</button>
|
| 293 |
+
<button class="testimonial-next mx-2 p-2 rounded-full bg-white shadow-md hover:bg-indigo-100 transition-colors">
|
| 294 |
+
<i data-feather="chevron-right" class="w-5 h-5 text-indigo-600"></i>
|
| 295 |
+
</button>
|
| 296 |
+
</div>
|
| 297 |
+
</div>
|
| 298 |
+
</div>
|
| 299 |
+
</section>
|
| 300 |
+
|
| 301 |
+
<!-- Awards -->
|
| 302 |
+
<section class="py-20">
|
| 303 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 304 |
+
<div class="text-center mb-16">
|
| 305 |
+
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Awards & Recognition</h2>
|
| 306 |
+
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Industry recognition for our innovative work</p>
|
| 307 |
+
</div>
|
| 308 |
+
|
| 309 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 justify-items-center">
|
| 310 |
+
<div class="flex flex-col items-center">
|
| 311 |
+
<div class="w-24 h-24 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
|
| 312 |
+
<i data-feather="award" class="text-indigo-600 w-10 h-10"></i>
|
| 313 |
+
</div>
|
| 314 |
+
<p class="text-center font-medium">Webby Awards <br>2023 Winner</p>
|
| 315 |
+
</div>
|
| 316 |
+
|
| 317 |
+
<div class="flex flex-col items-center">
|
| 318 |
+
<div class="w-24 h-24 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
|
| 319 |
+
<i data-feather="star" class="text-indigo-600 w-10 h-10"></i>
|
| 320 |
+
</div>
|
| 321 |
+
<p class="text-center font-medium">Awwwards <br>Site of the Year</p>
|
| 322 |
+
</div>
|
| 323 |
+
|
| 324 |
+
<div class="flex flex-col items-center">
|
| 325 |
+
<div class="w-24 h-24 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
|
| 326 |
+
<i data-feather="trophy" class="text-indigo-600 w-10 h-10"></i>
|
| 327 |
+
</div>
|
| 328 |
+
<p class="text-center font-medium">CSS Design Awards <br>Gold Winner</p>
|
| 329 |
+
</div>
|
| 330 |
+
|
| 331 |
+
<div class="flex flex-col items-center">
|
| 332 |
+
<div class="w-24 h-24 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
|
| 333 |
+
<i data-feather="medal" class="text-indigo-600 w-10 h-10"></i>
|
| 334 |
+
</div>
|
| 335 |
+
<p class="text-center font-medium">FWA <br>Mobile of the Day</p>
|
| 336 |
+
</div>
|
| 337 |
+
</div>
|
| 338 |
+
</div>
|
| 339 |
+
</section>
|
| 340 |
+
|
| 341 |
+
<!-- CTA -->
|
| 342 |
+
<section class="py-20 bg-indigo-600">
|
| 343 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 344 |
+
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to start your project?</h2>
|
| 345 |
+
<p class="text-xl text-indigo-100 mb-8 max-w-3xl mx-auto">Let's create something amazing together. Get in touch with our team to discuss your vision.</p>
|
| 346 |
+
<a href="#contact" class="bg-white text-indigo-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-full transition duration-300 inline-block">Get a Quote</a>
|
| 347 |
+
</div>
|
| 348 |
+
</section>
|
| 349 |
+
|
| 350 |
+
<!-- Contact Form -->
|
| 351 |
+
<section id="contact" class="py-20 bg-gray-50">
|
| 352 |
+
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 353 |
+
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
|
| 354 |
+
<div class="md:flex">
|
| 355 |
+
<div class="md:w-1/2 bg-indigo-600 p-8 text-white">
|
| 356 |
+
<h2 class="text-3xl font-bold mb-6">Get in Touch</h2>
|
| 357 |
+
<p class="mb-6">Have a project in mind? Fill out our form and we'll get back to you within 24 hours.</p>
|
| 358 |
+
<div class="space-y-4">
|
| 359 |
+
<div class="flex items-start">
|
| 360 |
+
<i data-feather="mail" class="mr-4 w-5 h-5 mt-1"></i>
|
| 361 |
+
<div>
|
| 362 |
+
<h4 class="font-bold">Email Us</h4>
|
| 363 |
+
<p>hello@pixelpioneers.com</p>
|
| 364 |
+
</div>
|
| 365 |
+
</div>
|
| 366 |
+
<div class="flex items-start">
|
| 367 |
+
<i data-feather="phone" class="mr-4 w-5 h-5 mt-1"></i>
|
| 368 |
+
<div>
|
| 369 |
+
<h4 class="font-bold">Call Us</h4>
|
| 370 |
+
<p>+1 (555) 123-4567</p>
|
| 371 |
+
</div>
|
| 372 |
+
</div>
|
| 373 |
+
<div class="flex items-start">
|
| 374 |
+
<i data-feather="map-pin" class="mr-4 w-5 h-5 mt-1"></i>
|
| 375 |
+
<div>
|
| 376 |
+
<h4 class="font-bold">Visit Us</h4>
|
| 377 |
+
<p>123 Creative St, San Francisco, CA</p>
|
| 378 |
+
</div>
|
| 379 |
+
</div>
|
| 380 |
+
</div>
|
| 381 |
+
</div>
|
| 382 |
+
<div class="md:w-1/2 p-8">
|
| 383 |
+
<form class="space-y-6">
|
| 384 |
+
<div>
|
| 385 |
+
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
|
| 386 |
+
<input type="text" id="name" name="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
|
| 387 |
+
</div>
|
| 388 |
+
<div>
|
| 389 |
+
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label>
|
| 390 |
+
<input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
|
| 391 |
+
</div>
|
| 392 |
+
<div>
|
| 393 |
+
<label for="service" class="block text-sm font-medium text-gray-700 mb-1">Service Needed</label>
|
| 394 |
+
<select id="service" name="service" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500">
|
| 395 |
+
<option value="">Select a service</option>
|
| 396 |
+
<option value="design">UI/UX Design</option>
|
| 397 |
+
<option value="web">Web Development</option>
|
| 398 |
+
<option value="mobile">Mobile App</option>
|
| 399 |
+
<option value="branding">Branding</option>
|
| 400 |
+
<option value="strategy">Digital Strategy</option>
|
| 401 |
+
<option value="other">Other</option>
|
| 402 |
+
</select>
|
| 403 |
+
</div>
|
| 404 |
+
<div>
|
| 405 |
+
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Project Details</label>
|
| 406 |
+
<textarea id="message" name="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-indigo-500 focus:border-indigo-500"></textarea>
|
| 407 |
+
</div>
|
| 408 |
+
<button type="submit" class="w-full bg-indigo-600 text-white py-3 px-4 rounded-md hover:bg-indigo-700 transition duration-300 font-medium">Submit Request</button>
|
| 409 |
+
</form>
|
| 410 |
+
</div>
|
| 411 |
+
</div>
|
| 412 |
+
</div>
|
| 413 |
+
</div>
|
| 414 |
+
</section>
|
| 415 |
+
|
| 416 |
+
<custom-footer></custom-footer>
|
| 417 |
+
|
| 418 |
+
<script src="components/navbar.js"></script>
|
| 419 |
+
<script src="components/footer.js"></script>
|
| 420 |
+
<script src="script.js"></script>
|
| 421 |
+
<script>
|
| 422 |
+
feather.replace();
|
| 423 |
+
|
| 424 |
+
// Initialize Vanta.js animation
|
| 425 |
+
VANTA.NET({
|
| 426 |
+
el: "#vanta-bg",
|
| 427 |
+
mouseControls: true,
|
| 428 |
+
touchControls: true,
|
| 429 |
+
gyroControls: false,
|
| 430 |
+
minHeight: 200.00,
|
| 431 |
+
minWidth: 200.00,
|
| 432 |
+
scale: 1.00,
|
| 433 |
+
scaleMobile: 1.00,
|
| 434 |
+
color: 0x5e72e4,
|
| 435 |
+
backgroundColor: 0x181a2a,
|
| 436 |
+
points: 10.00,
|
| 437 |
+
maxDistance: 22.00,
|
| 438 |
+
spacing: 18.00
|
| 439 |
+
});
|
| 440 |
+
</script>
|
| 441 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 442 |
+
</body>
|
| 443 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Testimonial slider functionality
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
const slider = document.querySelector('.testimonial-slider .flex');
|
| 4 |
+
const slides = document.querySelectorAll('.testimonial-slide');
|
| 5 |
+
const prevBtn = document.querySelector('.testimonial-prev');
|
| 6 |
+
const nextBtn = document.querySelector('.testimonial-next');
|
| 7 |
+
let currentIndex = 0;
|
| 8 |
+
const slideCount = slides.length;
|
| 9 |
+
|
| 10 |
+
function goToSlide(index) {
|
| 11 |
+
if (index < 0) {
|
| 12 |
+
index = slideCount - 1;
|
| 13 |
+
} else if (index >= slideCount) {
|
| 14 |
+
index = 0;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
currentIndex = index;
|
| 18 |
+
const offset = -currentIndex * 100;
|
| 19 |
+
slider.style.transform = `translateX(${offset}%)`;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
function nextSlide() {
|
| 23 |
+
goToSlide(currentIndex + 1);
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
function prevSlide() {
|
| 27 |
+
goToSlide(currentIndex - 1);
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
nextBtn.addEventListener('click', nextSlide);
|
| 31 |
+
prevBtn.addEventListener('click', prevSlide);
|
| 32 |
+
|
| 33 |
+
// Auto-advance slides every 5 seconds
|
| 34 |
+
setInterval(nextSlide, 5000);
|
| 35 |
+
|
| 36 |
+
// Smooth scrolling for anchor links
|
| 37 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 38 |
+
anchor.addEventListener('click', function (e) {
|
| 39 |
+
e.preventDefault();
|
| 40 |
+
|
| 41 |
+
const targetId = this.getAttribute('href');
|
| 42 |
+
if (targetId === '#') return;
|
| 43 |
+
|
| 44 |
+
const targetElement = document.querySelector(targetId);
|
| 45 |
+
if (targetElement) {
|
| 46 |
+
targetElement.scrollIntoView({
|
| 47 |
+
behavior: 'smooth'
|
| 48 |
+
});
|
| 49 |
+
}
|
| 50 |
+
});
|
| 51 |
+
});
|
| 52 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,37 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
color: rgb(107, 114, 128);
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 2 |
+
|
| 3 |
body {
|
| 4 |
+
font-family: 'Inter', sans-serif;
|
| 5 |
+
scroll-behavior: smooth;
|
| 6 |
}
|
| 7 |
|
| 8 |
+
/* Animation for hero chevron */
|
| 9 |
+
@keyframes bounce {
|
| 10 |
+
0%, 100% {
|
| 11 |
+
transform: translateY(-25%) translateX(-50%);
|
| 12 |
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
| 13 |
+
}
|
| 14 |
+
50% {
|
| 15 |
+
transform: translateY(0) translateX(-50%);
|
| 16 |
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
| 17 |
+
}
|
| 18 |
}
|
| 19 |
+
.animate-bounce {
|
| 20 |
+
animation: bounce 1.5s infinite;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
}
|
| 22 |
|
| 23 |
+
/* Testimonial slider styles */
|
| 24 |
+
.testimonial-slider {
|
| 25 |
+
overflow: hidden;
|
| 26 |
+
position: relative;
|
|
|
|
|
|
|
| 27 |
}
|
| 28 |
|
| 29 |
+
.testimonial-slider .flex {
|
| 30 |
+
display: flex;
|
| 31 |
+
transition: transform 0.5s ease-in-out;
|
| 32 |
}
|
| 33 |
+
|
| 34 |
+
.testimonial-slide {
|
| 35 |
+
flex-shrink: 0;
|
| 36 |
+
width: 100%;
|
| 37 |
+
}
|