i want the clour combination to be black and white
Browse files- components/case-studies.js +9 -9
- components/footer.js +3 -3
- components/navbar.js +3 -3
- index.html +21 -24
- style.css +4 -7
components/case-studies.js
CHANGED
|
@@ -20,8 +20,8 @@ class CustomCaseStudies extends HTMLElement {
|
|
| 20 |
font-weight: 700;
|
| 21 |
text-align: center;
|
| 22 |
margin-bottom: 3rem;
|
| 23 |
-
background: linear-gradient(to right, #
|
| 24 |
-
|
| 25 |
background-clip: text;
|
| 26 |
color: transparent;
|
| 27 |
}
|
|
@@ -33,8 +33,8 @@ class CustomCaseStudies extends HTMLElement {
|
|
| 33 |
}
|
| 34 |
|
| 35 |
.case-study-card {
|
| 36 |
-
background: #
|
| 37 |
-
|
| 38 |
overflow: hidden;
|
| 39 |
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
| 40 |
}
|
|
@@ -100,16 +100,16 @@ class CustomCaseStudies extends HTMLElement {
|
|
| 100 |
<div class="case-study-card">
|
| 101 |
<img src="http://static.photos/finance/640x360/1" alt="Accounting Software" class="case-study-image">
|
| 102 |
<div class="case-study-content">
|
| 103 |
-
|
| 104 |
-
|
| 105 |
<p class="case-study-description">
|
| 106 |
Streamlined GST and IT filing for 500+ businesses with our automated financial suite.
|
| 107 |
</p>
|
| 108 |
-
|
| 109 |
Read case study
|
| 110 |
-
<i data-feather="arrow-right"></i>
|
| 111 |
</a>
|
| 112 |
-
|
| 113 |
</div>
|
| 114 |
|
| 115 |
<div class="case-study-card">
|
|
|
|
| 20 |
font-weight: 700;
|
| 21 |
text-align: center;
|
| 22 |
margin-bottom: 3rem;
|
| 23 |
+
background: linear-gradient(to right, #ffffff, #aaaaaa);
|
| 24 |
+
-webkit-background-clip: text;
|
| 25 |
background-clip: text;
|
| 26 |
color: transparent;
|
| 27 |
}
|
|
|
|
| 33 |
}
|
| 34 |
|
| 35 |
.case-study-card {
|
| 36 |
+
background: #111111;
|
| 37 |
+
border-radius: 1rem;
|
| 38 |
overflow: hidden;
|
| 39 |
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
| 40 |
}
|
|
|
|
| 100 |
<div class="case-study-card">
|
| 101 |
<img src="http://static.photos/finance/640x360/1" alt="Accounting Software" class="case-study-image">
|
| 102 |
<div class="case-study-content">
|
| 103 |
+
<span class="case-study-industry" style="background: #666666;">Finance</span>
|
| 104 |
+
<h3>Automated Tax Compliance</h3>
|
| 105 |
<p class="case-study-description">
|
| 106 |
Streamlined GST and IT filing for 500+ businesses with our automated financial suite.
|
| 107 |
</p>
|
| 108 |
+
<a href="#" class="case-study-link" style="color: #ffffff;">
|
| 109 |
Read case study
|
| 110 |
+
<i data-feather="arrow-right" style="color: #ffffff;"></i>
|
| 111 |
</a>
|
| 112 |
+
</div>
|
| 113 |
</div>
|
| 114 |
|
| 115 |
<div class="case-study-card">
|
components/footer.js
CHANGED
|
@@ -22,7 +22,7 @@ class CustomFooter extends HTMLElement {
|
|
| 22 |
.footer-logo {
|
| 23 |
font-size: 1.5rem;
|
| 24 |
font-weight: 700;
|
| 25 |
-
background: linear-gradient(to right, #
|
| 26 |
-webkit-background-clip: text;
|
| 27 |
background-clip: text;
|
| 28 |
color: transparent;
|
|
@@ -57,8 +57,8 @@ class CustomFooter extends HTMLElement {
|
|
| 57 |
}
|
| 58 |
|
| 59 |
.social-link:hover {
|
| 60 |
-
background: linear-gradient(to right, #
|
| 61 |
-
|
| 62 |
}
|
| 63 |
|
| 64 |
.footer-heading {
|
|
|
|
| 22 |
.footer-logo {
|
| 23 |
font-size: 1.5rem;
|
| 24 |
font-weight: 700;
|
| 25 |
+
background: linear-gradient(to right, #ffffff, #aaaaaa);
|
| 26 |
-webkit-background-clip: text;
|
| 27 |
background-clip: text;
|
| 28 |
color: transparent;
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
.social-link:hover {
|
| 60 |
+
background: linear-gradient(to right, #ffffff, #999999);
|
| 61 |
+
transform: translateY(-3px);
|
| 62 |
}
|
| 63 |
|
| 64 |
.footer-heading {
|
components/navbar.js
CHANGED
|
@@ -27,7 +27,7 @@ class CustomNavbar extends HTMLElement {
|
|
| 27 |
.logo {
|
| 28 |
font-size: 1.5rem;
|
| 29 |
font-weight: 700;
|
| 30 |
-
background: linear-gradient(to right, #
|
| 31 |
-webkit-background-clip: text;
|
| 32 |
background-clip: text;
|
| 33 |
color: transparent;
|
|
@@ -63,8 +63,8 @@ class CustomNavbar extends HTMLElement {
|
|
| 63 |
left: 0;
|
| 64 |
width: 0;
|
| 65 |
height: 2px;
|
| 66 |
-
background: linear-gradient(to right, #
|
| 67 |
-
|
| 68 |
}
|
| 69 |
|
| 70 |
.nav-link:hover::after {
|
|
|
|
| 27 |
.logo {
|
| 28 |
font-size: 1.5rem;
|
| 29 |
font-weight: 700;
|
| 30 |
+
background: linear-gradient(to right, #ffffff, #aaaaaa);
|
| 31 |
-webkit-background-clip: text;
|
| 32 |
background-clip: text;
|
| 33 |
color: transparent;
|
|
|
|
| 63 |
left: 0;
|
| 64 |
width: 0;
|
| 65 |
height: 2px;
|
| 66 |
+
background: linear-gradient(to right, #ffffff, #999999);
|
| 67 |
+
transition: width 0.3s ease;
|
| 68 |
}
|
| 69 |
|
| 70 |
.nav-link:hover::after {
|
index.html
CHANGED
|
@@ -11,32 +11,32 @@
|
|
| 11 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
| 12 |
<script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.min.js"></script>
|
| 13 |
</head>
|
| 14 |
-
<body class="bg-
|
| 15 |
-
|
| 16 |
|
| 17 |
<main class="relative z-10">
|
| 18 |
<!-- Hero Section -->
|
| 19 |
<section class="min-h-screen flex flex-col justify-center items-center relative overflow-hidden">
|
| 20 |
<div id="3d-container" class="absolute inset-0 w-full h-full z-0"></div>
|
| 21 |
<div class="relative z-10 text-center px-4 max-w-6xl mx-auto">
|
| 22 |
-
<h1 class="text-5xl md:text-7xl font-bold mb-6
|
| 23 |
Intely Software Solutions
|
| 24 |
</h1>
|
| 25 |
-
|
| 26 |
Transforming businesses with cutting-edge digital tools and enterprise solutions.
|
| 27 |
</p>
|
| 28 |
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
| 29 |
-
<a href="#features" class="px-8 py-4 bg-
|
| 30 |
Discover More
|
| 31 |
</a>
|
| 32 |
-
<a href="#contact" class="px-8 py-4 border-2 border-
|
| 33 |
Get Started
|
| 34 |
</a>
|
| 35 |
</div>
|
| 36 |
-
|
| 37 |
<div class="absolute bottom-20 left-1/2 transform -translate-x-1/2 animate-bounce">
|
| 38 |
-
<i data-feather="chevron-down" class="w-12 h-12 text-
|
| 39 |
-
|
| 40 |
</section>
|
| 41 |
<!-- Products Section -->
|
| 42 |
<section id="products" class="py-20 px-4 max-w-7xl mx-auto">
|
|
@@ -136,8 +136,8 @@
|
|
| 136 |
</div>
|
| 137 |
</section>
|
| 138 |
<!-- Client Showcase -->
|
| 139 |
-
<section class="py-20 bg-
|
| 140 |
-
|
| 141 |
<h2 class="text-4xl font-bold text-center mb-16">Client Success Stories</h2>
|
| 142 |
|
| 143 |
<!-- Finance Case Study -->
|
|
@@ -241,8 +241,8 @@
|
|
| 241 |
<label for="message" class="block mb-2 font-medium">Message</label>
|
| 242 |
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea>
|
| 243 |
</div>
|
| 244 |
-
<button type="submit" class="w-full md:w-auto px-8 py-4 bg-
|
| 245 |
-
|
| 246 |
</button>
|
| 247 |
</form>
|
| 248 |
</section>
|
|
@@ -279,13 +279,12 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
| 279 |
// Add floating objects
|
| 280 |
const geometry = new THREE.IcosahedronGeometry(1, 0);
|
| 281 |
const colors = [
|
| 282 |
-
{ color:
|
| 283 |
-
{ color:
|
| 284 |
-
{ color:
|
| 285 |
-
{ color:
|
| 286 |
];
|
| 287 |
-
|
| 288 |
-
const materials = colors.map(c => new THREE.MeshPhongMaterial({
|
| 289 |
color: c.color,
|
| 290 |
emissive: c.emissive,
|
| 291 |
emissiveIntensity: 0.3,
|
|
@@ -334,15 +333,13 @@ mesh.position.x = Math.random() * 20 - 10;
|
|
| 334 |
bevelOffset: 0,
|
| 335 |
bevelSegments: 5
|
| 336 |
});
|
| 337 |
-
|
| 338 |
const logoMaterial = new THREE.MeshPhongMaterial({
|
| 339 |
-
color:
|
| 340 |
-
emissive:
|
| 341 |
emissiveIntensity: 0.4,
|
| 342 |
shininess: 90
|
| 343 |
});
|
| 344 |
-
|
| 345 |
-
const logoMesh = new THREE.Mesh(logoGeometry, logoMaterial);
|
| 346 |
logoMesh.position.set(0, 0, 0);
|
| 347 |
scene.add(logoMesh);
|
| 348 |
});
|
|
|
|
| 11 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
| 12 |
<script src="https://cdn.jsdelivr.net/npm/three@0.128.0/examples/js/controls/OrbitControls.min.js"></script>
|
| 13 |
</head>
|
| 14 |
+
<body class="bg-black text-white overflow-x-hidden">
|
| 15 |
+
<custom-navbar></custom-navbar>
|
| 16 |
|
| 17 |
<main class="relative z-10">
|
| 18 |
<!-- Hero Section -->
|
| 19 |
<section class="min-h-screen flex flex-col justify-center items-center relative overflow-hidden">
|
| 20 |
<div id="3d-container" class="absolute inset-0 w-full h-full z-0"></div>
|
| 21 |
<div class="relative z-10 text-center px-4 max-w-6xl mx-auto">
|
| 22 |
+
<h1 class="text-5xl md:text-7xl font-bold mb-6 text-white">
|
| 23 |
Intely Software Solutions
|
| 24 |
</h1>
|
| 25 |
+
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
|
| 26 |
Transforming businesses with cutting-edge digital tools and enterprise solutions.
|
| 27 |
</p>
|
| 28 |
<div class="flex flex-col sm:flex-row gap-4 justify-center">
|
| 29 |
+
<a href="#features" class="px-8 py-4 bg-white text-black rounded-full font-bold text-lg hover:shadow-lg hover:shadow-white/30 transition-all">
|
| 30 |
Discover More
|
| 31 |
</a>
|
| 32 |
+
<a href="#contact" class="px-8 py-4 border-2 border-white rounded-full font-bold text-lg hover:bg-gray-900/30 transition-all">
|
| 33 |
Get Started
|
| 34 |
</a>
|
| 35 |
</div>
|
| 36 |
+
</div>
|
| 37 |
<div class="absolute bottom-20 left-1/2 transform -translate-x-1/2 animate-bounce">
|
| 38 |
+
<i data-feather="chevron-down" class="w-12 h-12 text-white"></i>
|
| 39 |
+
</div>
|
| 40 |
</section>
|
| 41 |
<!-- Products Section -->
|
| 42 |
<section id="products" class="py-20 px-4 max-w-7xl mx-auto">
|
|
|
|
| 136 |
</div>
|
| 137 |
</section>
|
| 138 |
<!-- Client Showcase -->
|
| 139 |
+
<section class="py-20 bg-black">
|
| 140 |
+
<div class="max-w-7xl mx-auto px-4">
|
| 141 |
<h2 class="text-4xl font-bold text-center mb-16">Client Success Stories</h2>
|
| 142 |
|
| 143 |
<!-- Finance Case Study -->
|
|
|
|
| 241 |
<label for="message" class="block mb-2 font-medium">Message</label>
|
| 242 |
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea>
|
| 243 |
</div>
|
| 244 |
+
<button type="submit" class="w-full md:w-auto px-8 py-4 bg-white text-black rounded-full font-bold text-lg hover:shadow-lg hover:shadow-white/30 transition-all">
|
| 245 |
+
Request Demo
|
| 246 |
</button>
|
| 247 |
</form>
|
| 248 |
</section>
|
|
|
|
| 279 |
// Add floating objects
|
| 280 |
const geometry = new THREE.IcosahedronGeometry(1, 0);
|
| 281 |
const colors = [
|
| 282 |
+
{ color: 0xffffff, emissive: 0xaaaaaa }, // White
|
| 283 |
+
{ color: 0xdddddd, emissive: 0x888888 }, // Light Gray
|
| 284 |
+
{ color: 0xcccccc, emissive: 0x666666 }, // Medium Gray
|
| 285 |
+
{ color: 0x999999, emissive: 0x444444 } // Dark Gray
|
| 286 |
];
|
| 287 |
+
const materials = colors.map(c => new THREE.MeshPhongMaterial({
|
|
|
|
| 288 |
color: c.color,
|
| 289 |
emissive: c.emissive,
|
| 290 |
emissiveIntensity: 0.3,
|
|
|
|
| 333 |
bevelOffset: 0,
|
| 334 |
bevelSegments: 5
|
| 335 |
});
|
|
|
|
| 336 |
const logoMaterial = new THREE.MeshPhongMaterial({
|
| 337 |
+
color: 0xffffff,
|
| 338 |
+
emissive: 0xcccccc,
|
| 339 |
emissiveIntensity: 0.4,
|
| 340 |
shininess: 90
|
| 341 |
});
|
| 342 |
+
const logoMesh = new THREE.Mesh(logoGeometry, logoMaterial);
|
|
|
|
| 343 |
logoMesh.position.set(0, 0, 0);
|
| 344 |
scene.add(logoMesh);
|
| 345 |
});
|
style.css
CHANGED
|
@@ -12,16 +12,14 @@ body {
|
|
| 12 |
::-webkit-scrollbar-track {
|
| 13 |
background: #1a1a1a;
|
| 14 |
}
|
| 15 |
-
|
| 16 |
::-webkit-scrollbar-thumb {
|
| 17 |
-
background: #
|
| 18 |
border-radius: 4px;
|
| 19 |
}
|
| 20 |
|
| 21 |
::-webkit-scrollbar-thumb:hover {
|
| 22 |
-
background: #
|
| 23 |
}
|
| 24 |
-
|
| 25 |
/* Animation */
|
| 26 |
@keyframes float {
|
| 27 |
0%, 100% {
|
|
@@ -43,10 +41,9 @@ body {
|
|
| 43 |
/* Product cards */
|
| 44 |
.product-card {
|
| 45 |
transition: all 0.3s ease;
|
| 46 |
-
box-shadow: 0 10px 15px -3px rgba(
|
| 47 |
-
border: 1px solid rgba(255, 255, 255, 0.
|
| 48 |
}
|
| 49 |
-
|
| 50 |
.product-card:hover {
|
| 51 |
transform: translateY(-5px);
|
| 52 |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
|
|
|
|
| 12 |
::-webkit-scrollbar-track {
|
| 13 |
background: #1a1a1a;
|
| 14 |
}
|
|
|
|
| 15 |
::-webkit-scrollbar-thumb {
|
| 16 |
+
background: #888888;
|
| 17 |
border-radius: 4px;
|
| 18 |
}
|
| 19 |
|
| 20 |
::-webkit-scrollbar-thumb:hover {
|
| 21 |
+
background: #ffffff;
|
| 22 |
}
|
|
|
|
| 23 |
/* Animation */
|
| 24 |
@keyframes float {
|
| 25 |
0%, 100% {
|
|
|
|
| 41 |
/* Product cards */
|
| 42 |
.product-card {
|
| 43 |
transition: all 0.3s ease;
|
| 44 |
+
box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
|
| 45 |
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
| 46 |
}
|
|
|
|
| 47 |
.product-card:hover {
|
| 48 |
transform: translateY(-5px);
|
| 49 |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
|