Can you revise it to make it about a Enterprise-Grade Secure Automations
Browse filesand put a cool glowing phantom blue to cyber cyan gradient"PHANTOM DIGITAL" wordmark and "PD" logo with a cyber cyan matrix-like code raining animation in the backgroud
- components/footer.js +4 -4
- components/navbar.js +3 -3
- index.html +17 -7
- script.js +46 -1
- style.css +19 -2
components/footer.js
CHANGED
|
@@ -13,11 +13,11 @@ class CustomFooter extends HTMLElement {
|
|
| 13 |
<div class="grid md:grid-cols-4 gap-12">
|
| 14 |
<div>
|
| 15 |
<div class="flex items-center gap-2 mb-6">
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
</div>
|
| 19 |
-
<span class="text-xl font-bold">Phantom Digital</span>
|
| 20 |
</div>
|
|
|
|
|
|
|
| 21 |
<p class="text-gray-400 mb-6">
|
| 22 |
Crafting digital experiences that captivate and convert.
|
| 23 |
</p>
|
|
|
|
| 13 |
<div class="grid md:grid-cols-4 gap-12">
|
| 14 |
<div>
|
| 15 |
<div class="flex items-center gap-2 mb-6">
|
| 16 |
+
<div class="w-8 h-8 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center">
|
| 17 |
+
<span class="text-white font-bold text-xs">PD</span>
|
|
|
|
|
|
|
| 18 |
</div>
|
| 19 |
+
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">PHANTOM DIGITAL</span>
|
| 20 |
+
</div>
|
| 21 |
<p class="text-gray-400 mb-6">
|
| 22 |
Crafting digital experiences that captivate and convert.
|
| 23 |
</p>
|
components/navbar.js
CHANGED
|
@@ -29,10 +29,10 @@ class CustomNavbar extends HTMLElement {
|
|
| 29 |
<div class="flex items-center justify-between">
|
| 30 |
<a href="/" class="flex items-center gap-2">
|
| 31 |
<div class="w-8 h-8 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center">
|
| 32 |
-
<
|
| 33 |
</div>
|
| 34 |
-
<span class="text-xl font-bold">
|
| 35 |
-
|
| 36 |
|
| 37 |
<div class="hidden md:flex items-center gap-8">
|
| 38 |
<a href="#services" class="nav-link text-gray-300 hover:text-white">Services</a>
|
|
|
|
| 29 |
<div class="flex items-center justify-between">
|
| 30 |
<a href="/" class="flex items-center gap-2">
|
| 31 |
<div class="w-8 h-8 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center">
|
| 32 |
+
<span class="text-white font-bold text-xs">PD</span>
|
| 33 |
</div>
|
| 34 |
+
<span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">PHANTOM</span>
|
| 35 |
+
</a>
|
| 36 |
|
| 37 |
<div class="hidden md:flex items-center gap-8">
|
| 38 |
<a href="#services" class="nav-link text-gray-300 hover:text-white">Services</a>
|
index.html
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>Phantom Digital |
|
| 7 |
-
|
| 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>
|
|
@@ -40,12 +40,12 @@
|
|
| 40 |
<section class="flex flex-col md:flex-row items-center justify-between gap-12 mb-24">
|
| 41 |
<div class="md:w-1/2 space-y-6">
|
| 42 |
<h1 class="text-5xl md:text-6xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">
|
| 43 |
-
|
| 44 |
</h1>
|
| 45 |
<p class="text-xl text-gray-300">
|
| 46 |
-
We
|
| 47 |
</p>
|
| 48 |
-
|
| 49 |
<a href="#contact" class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium hover:opacity-90 transition">
|
| 50 |
Get Started
|
| 51 |
</a>
|
|
@@ -57,8 +57,18 @@
|
|
| 57 |
<div class="md:w-1/2">
|
| 58 |
<div class="relative">
|
| 59 |
<div class="absolute -inset-4 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-2xl blur opacity-75"></div>
|
| 60 |
-
<
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
</div>
|
| 63 |
</section>
|
| 64 |
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Phantom Digital | Enterprise-Grade Secure Automations</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>
|
|
|
|
| 40 |
<section class="flex flex-col md:flex-row items-center justify-between gap-12 mb-24">
|
| 41 |
<div class="md:w-1/2 space-y-6">
|
| 42 |
<h1 class="text-5xl md:text-6xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">
|
| 43 |
+
Enterprise-Grade <br> <span class="text-white">Secure Automations</span>
|
| 44 |
</h1>
|
| 45 |
<p class="text-xl text-gray-300">
|
| 46 |
+
We build bulletproof automation solutions that scale with your enterprise needs.
|
| 47 |
</p>
|
| 48 |
+
<div class="flex gap-4">
|
| 49 |
<a href="#contact" class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium hover:opacity-90 transition">
|
| 50 |
Get Started
|
| 51 |
</a>
|
|
|
|
| 57 |
<div class="md:w-1/2">
|
| 58 |
<div class="relative">
|
| 59 |
<div class="absolute -inset-4 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-2xl blur opacity-75"></div>
|
| 60 |
+
<div class="relative rounded-xl w-full h-auto bg-black overflow-hidden">
|
| 61 |
+
<canvas id="matrixCanvas" class="w-full h-full"></canvas>
|
| 62 |
+
<div class="absolute inset-0 flex items-center justify-center">
|
| 63 |
+
<div class="text-center p-8 backdrop-blur-sm bg-black/30 rounded-lg">
|
| 64 |
+
<div class="text-4xl font-bold mb-2 bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">
|
| 65 |
+
PHANTOM DIGITAL
|
| 66 |
+
</div>
|
| 67 |
+
<div class="text-xl text-cyan-300">SECURE AUTOMATION SOLUTIONS</div>
|
| 68 |
+
</div>
|
| 69 |
+
</div>
|
| 70 |
+
</div>
|
| 71 |
+
</div>
|
| 72 |
</div>
|
| 73 |
</section>
|
| 74 |
|
script.js
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
document.addEventListener('DOMContentLoaded', function() {
|
| 2 |
-
|
|
|
|
| 3 |
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 4 |
anchor.addEventListener('click', function (e) {
|
| 5 |
e.preventDefault();
|
|
|
|
| 1 |
+
|
| 2 |
+
// Matrix animation
|
| 3 |
+
function initMatrix() {
|
| 4 |
+
const canvas = document.getElementById('matrixCanvas');
|
| 5 |
+
if (!canvas) return;
|
| 6 |
+
|
| 7 |
+
const ctx = canvas.getContext('2d');
|
| 8 |
+
canvas.width = canvas.offsetWidth;
|
| 9 |
+
canvas.height = canvas.offsetHeight;
|
| 10 |
+
|
| 11 |
+
const katakana = 'アァカサタナハマヤャラワガザダバパイィキシチニヒミリヰギジヂビピウゥクスツヌフムユュルグズブヅプエェケセテネヘメレヱゲゼデベペオォコソトノホモヨョロヲゴゾドボポヴッン';
|
| 12 |
+
const latin = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
| 13 |
+
const nums = '0123456789';
|
| 14 |
+
const symbols = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~';
|
| 15 |
+
const alphabet = katakana + latin + nums + symbols;
|
| 16 |
+
|
| 17 |
+
const fontSize = 16;
|
| 18 |
+
const columns = canvas.width / fontSize;
|
| 19 |
+
const drops = [];
|
| 20 |
+
for (let i = 0; i < columns; i++) {
|
| 21 |
+
drops[i] = 1;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
function draw() {
|
| 25 |
+
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
|
| 26 |
+
ctx.fillRect(0, 0, canvas.width, canvas.height);
|
| 27 |
+
|
| 28 |
+
ctx.fillStyle = '#0ff';
|
| 29 |
+
ctx.font = fontSize + 'px monospace';
|
| 30 |
+
|
| 31 |
+
for (let i = 0; i < drops.length; i++) {
|
| 32 |
+
const text = alphabet.charAt(Math.floor(Math.random() * alphabet.length));
|
| 33 |
+
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
|
| 34 |
+
|
| 35 |
+
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
|
| 36 |
+
drops[i] = 0;
|
| 37 |
+
}
|
| 38 |
+
drops[i]++;
|
| 39 |
+
}
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
setInterval(draw, 33);
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
document.addEventListener('DOMContentLoaded', function() {
|
| 46 |
+
initMatrix();
|
| 47 |
+
// Smooth scrolling for anchor links
|
| 48 |
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 49 |
anchor.addEventListener('click', function (e) {
|
| 50 |
e.preventDefault();
|
style.css
CHANGED
|
@@ -33,9 +33,26 @@ body {
|
|
| 33 |
50% { transform: translateY(-20px); }
|
| 34 |
100% { transform: translateY(0px); }
|
| 35 |
}
|
| 36 |
-
|
| 37 |
.gradient-text {
|
| 38 |
background-clip: text;
|
| 39 |
-webkit-background-clip: text;
|
| 40 |
color: transparent;
|
| 41 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
50% { transform: translateY(-20px); }
|
| 34 |
100% { transform: translateY(0px); }
|
| 35 |
}
|
|
|
|
| 36 |
.gradient-text {
|
| 37 |
background-clip: text;
|
| 38 |
-webkit-background-clip: text;
|
| 39 |
color: transparent;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
/* Cyber glow effect */
|
| 43 |
+
.cyber-glow {
|
| 44 |
+
text-shadow: 0 0 5px rgba(0, 255, 255, 0.5),
|
| 45 |
+
0 0 10px rgba(0, 255, 255, 0.3),
|
| 46 |
+
0 0 15px rgba(0, 255, 255, 0.2);
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
/* PD logo animation */
|
| 50 |
+
@keyframes pd-pulse {
|
| 51 |
+
0% { opacity: 0.8; }
|
| 52 |
+
50% { opacity: 1; text-shadow: 0 0 8px cyan; }
|
| 53 |
+
100% { opacity: 0.8; }
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.pd-logo {
|
| 57 |
+
animation: pd-pulse 2s ease-in-out infinite;
|
| 58 |
+
}
|