https://phantom-digital.com/
Browse files- README.md +8 -5
- components/footer.js +110 -0
- components/navbar.js +61 -0
- index.html +252 -19
- script.js +28 -0
- style.css +31 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Phantom Digital Vibes
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Phantom Digital Vibes 🌀
|
| 3 |
+
colorFrom: green
|
| 4 |
+
colorTo: yellow
|
| 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,110 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.footer-link:hover {
|
| 7 |
+
color: #38bdf8;
|
| 8 |
+
transform: translateX(4px);
|
| 9 |
+
}
|
| 10 |
+
</style>
|
| 11 |
+
<footer class="bg-gray-900 border-t border-gray-800">
|
| 12 |
+
<div class="container mx-auto px-4 py-12">
|
| 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 |
+
<i data-feather="activity" class="text-white w-4 h-4"></i>
|
| 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>
|
| 24 |
+
<div class="flex gap-4">
|
| 25 |
+
<a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-cyan-500/10 hover:text-cyan-400 transition">
|
| 26 |
+
<i data-feather="twitter"></i>
|
| 27 |
+
</a>
|
| 28 |
+
<a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-cyan-500/10 hover:text-cyan-400 transition">
|
| 29 |
+
<i data-feather="linkedin"></i>
|
| 30 |
+
</a>
|
| 31 |
+
<a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-cyan-500/10 hover:text-cyan-400 transition">
|
| 32 |
+
<i data-feather="instagram"></i>
|
| 33 |
+
</a>
|
| 34 |
+
<a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-cyan-500/10 hover:text-cyan-400 transition">
|
| 35 |
+
<i data-feather="github"></i>
|
| 36 |
+
</a>
|
| 37 |
+
</div>
|
| 38 |
+
</div>
|
| 39 |
+
|
| 40 |
+
<div>
|
| 41 |
+
<h3 class="text-lg font-semibold mb-6">Services</h3>
|
| 42 |
+
<ul class="space-y-3">
|
| 43 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 44 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Web Development
|
| 45 |
+
</a></li>
|
| 46 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 47 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Mobile Apps
|
| 48 |
+
</a></li>
|
| 49 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 50 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> UI/UX Design
|
| 51 |
+
</a></li>
|
| 52 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 53 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Digital Strategy
|
| 54 |
+
</a></li>
|
| 55 |
+
</ul>
|
| 56 |
+
</div>
|
| 57 |
+
|
| 58 |
+
<div>
|
| 59 |
+
<h3 class="text-lg font-semibold mb-6">Company</h3>
|
| 60 |
+
<ul class="space-y-3">
|
| 61 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 62 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> About Us
|
| 63 |
+
</a></li>
|
| 64 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 65 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Careers
|
| 66 |
+
</a></li>
|
| 67 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 68 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Blog
|
| 69 |
+
</a></li>
|
| 70 |
+
<li><a href="#" class="footer-link text-gray-400 hover:text-cyan-400 transition flex items-center gap-2">
|
| 71 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i> Contact
|
| 72 |
+
</a></li>
|
| 73 |
+
</ul>
|
| 74 |
+
</div>
|
| 75 |
+
|
| 76 |
+
<div>
|
| 77 |
+
<h3 class="text-lg font-semibold mb-6">Contact</h3>
|
| 78 |
+
<ul class="space-y-3">
|
| 79 |
+
<li class="flex items-start gap-3 text-gray-400">
|
| 80 |
+
<i data-feather="map-pin" class="w-5 h-5 mt-0.5 text-cyan-400"></i>
|
| 81 |
+
<span>123 Digital Street, Tech City, TC 10101</span>
|
| 82 |
+
</li>
|
| 83 |
+
<li class="flex items-center gap-3 text-gray-400">
|
| 84 |
+
<i data-feather="mail" class="w-5 h-5 text-cyan-400"></i>
|
| 85 |
+
<span>hello@phantom-digital.com</span>
|
| 86 |
+
</li>
|
| 87 |
+
<li class="flex items-center gap-3 text-gray-400">
|
| 88 |
+
<i data-feather="phone" class="w-5 h-5 text-cyan-400"></i>
|
| 89 |
+
<span>+1 (555) 123-4567</span>
|
| 90 |
+
</li>
|
| 91 |
+
</ul>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 96 |
+
<p class="text-gray-500 text-sm mb-4 md:mb-0">
|
| 97 |
+
© ${new Date().getFullYear()} Phantom Digital. All rights reserved.
|
| 98 |
+
</p>
|
| 99 |
+
<div class="flex gap-6">
|
| 100 |
+
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition">Privacy Policy</a>
|
| 101 |
+
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition">Terms of Service</a>
|
| 102 |
+
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition">Cookies</a>
|
| 103 |
+
</div>
|
| 104 |
+
</div>
|
| 105 |
+
</div>
|
| 106 |
+
</footer>
|
| 107 |
+
`;
|
| 108 |
+
}
|
| 109 |
+
}
|
| 110 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.navbar {
|
| 7 |
+
backdrop-filter: blur(10px);
|
| 8 |
+
background-color: rgba(15, 23, 42, 0.8);
|
| 9 |
+
}
|
| 10 |
+
.nav-link {
|
| 11 |
+
position: relative;
|
| 12 |
+
}
|
| 13 |
+
.nav-link::after {
|
| 14 |
+
content: '';
|
| 15 |
+
position: absolute;
|
| 16 |
+
bottom: -2px;
|
| 17 |
+
left: 0;
|
| 18 |
+
width: 0;
|
| 19 |
+
height: 2px;
|
| 20 |
+
background: linear-gradient(to right, #06b6d4, #3b82f6);
|
| 21 |
+
transition: width 0.3s ease;
|
| 22 |
+
}
|
| 23 |
+
.nav-link:hover::after {
|
| 24 |
+
width: 100%;
|
| 25 |
+
}
|
| 26 |
+
</style>
|
| 27 |
+
<nav class="navbar fixed w-full z-50 border-b border-gray-800">
|
| 28 |
+
<div class="container mx-auto px-4 py-4">
|
| 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 |
+
<i data-feather="activity" class="text-white w-4 h-4"></i>
|
| 33 |
+
</div>
|
| 34 |
+
<span class="text-xl font-bold">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>
|
| 39 |
+
<a href="#work" class="nav-link text-gray-300 hover:text-white">Work</a>
|
| 40 |
+
<a href="#about" class="nav-link text-gray-300 hover:text-white">About</a>
|
| 41 |
+
<a href="#contact" class="nav-link text-gray-300 hover:text-white">Contact</a>
|
| 42 |
+
</div>
|
| 43 |
+
|
| 44 |
+
<div class="flex items-center gap-4">
|
| 45 |
+
<button id="darkModeToggle" class="p-2 rounded-lg hover:bg-gray-800 transition">
|
| 46 |
+
<i data-feather="moon" class="text-gray-300 w-5 h-5"></i>
|
| 47 |
+
</button>
|
| 48 |
+
<a href="#contact" class="px-6 py-2 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg font-medium hover:opacity-90 transition hidden md:block">
|
| 49 |
+
Get Started
|
| 50 |
+
</a>
|
| 51 |
+
<button class="md:hidden p-2 rounded-lg hover:bg-gray-800 transition">
|
| 52 |
+
<i data-feather="menu" class="text-gray-300 w-5 h-5"></i>
|
| 53 |
+
</button>
|
| 54 |
+
</div>
|
| 55 |
+
</div>
|
| 56 |
+
</div>
|
| 57 |
+
</nav>
|
| 58 |
+
`;
|
| 59 |
+
}
|
| 60 |
+
}
|
| 61 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,252 @@
|
|
| 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" class="dark">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Phantom Digital | Digital Experiences Redefined</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>
|
| 12 |
+
tailwind.config = {
|
| 13 |
+
darkMode: 'class',
|
| 14 |
+
theme: {
|
| 15 |
+
extend: {
|
| 16 |
+
colors: {
|
| 17 |
+
phantom: {
|
| 18 |
+
50: '#f0f9ff',
|
| 19 |
+
100: '#e0f2fe',
|
| 20 |
+
200: '#bae6fd',
|
| 21 |
+
300: '#7dd3fc',
|
| 22 |
+
400: '#38bdf8',
|
| 23 |
+
500: '#0ea5e9',
|
| 24 |
+
600: '#0284c7',
|
| 25 |
+
700: '#0369a1',
|
| 26 |
+
800: '#075985',
|
| 27 |
+
900: '#0c4a6e',
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
</script>
|
| 34 |
+
</head>
|
| 35 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 36 |
+
<custom-navbar></custom-navbar>
|
| 37 |
+
|
| 38 |
+
<main class="container mx-auto px-4 py-12">
|
| 39 |
+
<!-- Hero Section -->
|
| 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 |
+
Digital Experiences <br> <span class="text-white">Redefined</span>
|
| 44 |
+
</h1>
|
| 45 |
+
<p class="text-xl text-gray-300">
|
| 46 |
+
We craft immersive digital experiences that captivate audiences and drive results.
|
| 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>
|
| 52 |
+
<a href="#work" class="px-8 py-3 border border-gray-700 rounded-full font-medium hover:bg-gray-800 transition">
|
| 53 |
+
Our Work
|
| 54 |
+
</a>
|
| 55 |
+
</div>
|
| 56 |
+
</div>
|
| 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 |
+
<img src="http://static.photos/technology/1024x576/42" alt="Digital Technology" class="relative rounded-xl w-full h-auto">
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
</section>
|
| 64 |
+
|
| 65 |
+
<!-- Clients Section -->
|
| 66 |
+
<section class="mb-24">
|
| 67 |
+
<h2 class="text-2xl font-medium text-center text-gray-400 mb-12">Trusted by innovative companies worldwide</h2>
|
| 68 |
+
<div class="flex flex-wrap justify-center gap-8 md:gap-16 items-center">
|
| 69 |
+
<img src="https://via.placeholder.com/120x40/1e293b/ffffff?text=Client+1" alt="Client Logo" class="h-8 opacity-70 hover:opacity-100 transition">
|
| 70 |
+
<img src="https://via.placeholder.com/120x40/1e293b/ffffff?text=Client+2" alt="Client Logo" class="h-8 opacity-70 hover:opacity-100 transition">
|
| 71 |
+
<img src="https://via.placeholder.com/120x40/1e293b/ffffff?text=Client+3" alt="Client Logo" class="h-8 opacity-70 hover:opacity-100 transition">
|
| 72 |
+
<img src="https://via.placeholder.com/120x40/1e293b/ffffff?text=Client+4" alt="Client Logo" class="h-8 opacity-70 hover:opacity-100 transition">
|
| 73 |
+
<img src="https://via.placeholder.com/120x40/1e293b/ffffff?text=Client+5" alt="Client Logo" class="h-8 opacity-70 hover:opacity-100 transition">
|
| 74 |
+
</div>
|
| 75 |
+
</section>
|
| 76 |
+
|
| 77 |
+
<!-- Services Section -->
|
| 78 |
+
<section id="services" class="mb-24">
|
| 79 |
+
<div class="text-center mb-16">
|
| 80 |
+
<h2 class="text-4xl font-bold mb-4">Our Digital Services</h2>
|
| 81 |
+
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
|
| 82 |
+
Comprehensive solutions tailored to your digital needs
|
| 83 |
+
</p>
|
| 84 |
+
</div>
|
| 85 |
+
<div class="grid md:grid-cols-3 gap-8">
|
| 86 |
+
<div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition group">
|
| 87 |
+
<div class="w-14 h-14 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center mb-6">
|
| 88 |
+
<i data-feather="code" class="text-white w-6 h-6"></i>
|
| 89 |
+
</div>
|
| 90 |
+
<h3 class="text-xl font-bold mb-3 group-hover:text-cyan-400 transition">Web Development</h3>
|
| 91 |
+
<p class="text-gray-400">
|
| 92 |
+
Custom websites and web applications built with modern technologies for optimal performance.
|
| 93 |
+
</p>
|
| 94 |
+
</div>
|
| 95 |
+
<div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition group">
|
| 96 |
+
<div class="w-14 h-14 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center mb-6">
|
| 97 |
+
<i data-feather="smartphone" class="text-white w-6 h-6"></i>
|
| 98 |
+
</div>
|
| 99 |
+
<h3 class="text-xl font-bold mb-3 group-hover:text-cyan-400 transition">Mobile Apps</h3>
|
| 100 |
+
<p class="text-gray-400">
|
| 101 |
+
Engaging mobile experiences for iOS and Android that delight users and drive engagement.
|
| 102 |
+
</p>
|
| 103 |
+
</div>
|
| 104 |
+
<div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition group">
|
| 105 |
+
<div class="w-14 h-14 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg flex items-center justify-center mb-6">
|
| 106 |
+
<i data-feather="bar-chart-2" class="text-white w-6 h-6"></i>
|
| 107 |
+
</div>
|
| 108 |
+
<h3 class="text-xl font-bold mb-3 group-hover:text-cyan-400 transition">Digital Strategy</h3>
|
| 109 |
+
<p class="text-gray-400">
|
| 110 |
+
Data-driven strategies to maximize your digital presence and achieve business objectives.
|
| 111 |
+
</p>
|
| 112 |
+
</div>
|
| 113 |
+
</div>
|
| 114 |
+
</section>
|
| 115 |
+
|
| 116 |
+
<!-- Work Section -->
|
| 117 |
+
<section id="work" class="mb-24">
|
| 118 |
+
<div class="text-center mb-16">
|
| 119 |
+
<h2 class="text-4xl font-bold mb-4">Featured Work</h2>
|
| 120 |
+
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
|
| 121 |
+
A glimpse of our recent digital projects
|
| 122 |
+
</p>
|
| 123 |
+
</div>
|
| 124 |
+
<div class="grid md:grid-cols-2 gap-8">
|
| 125 |
+
<div class="group relative overflow-hidden rounded-xl">
|
| 126 |
+
<img src="http://static.photos/workspace/1200x630/5" alt="Project 1" class="w-full h-80 object-cover group-hover:scale-105 transition duration-500">
|
| 127 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex flex-col justify-end p-8">
|
| 128 |
+
<h3 class="text-2xl font-bold text-white mb-2">Corporate Portal</h3>
|
| 129 |
+
<p class="text-gray-300">Enterprise web application</p>
|
| 130 |
+
</div>
|
| 131 |
+
</div>
|
| 132 |
+
<div class="group relative overflow-hidden rounded-xl">
|
| 133 |
+
<img src="http://static.photos/technology/1200x630/7" alt="Project 2" class="w-full h-80 object-cover group-hover:scale-105 transition duration-500">
|
| 134 |
+
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex flex-col justify-end p-8">
|
| 135 |
+
<h3 class="text-2xl font-bold text-white mb-2">E-commerce Platform</h3>
|
| 136 |
+
<p class="text-gray-300">Next-gen shopping experience</p>
|
| 137 |
+
</div>
|
| 138 |
+
</div>
|
| 139 |
+
</div>
|
| 140 |
+
</section>
|
| 141 |
+
|
| 142 |
+
<!-- Testimonials -->
|
| 143 |
+
<section class="mb-24">
|
| 144 |
+
<div class="text-center mb-16">
|
| 145 |
+
<h2 class="text-4xl font-bold mb-4">Client Testimonials</h2>
|
| 146 |
+
<p class="text-xl text-gray-400 max-w-2xl mx-auto">
|
| 147 |
+
What our clients say about working with us
|
| 148 |
+
</p>
|
| 149 |
+
</div>
|
| 150 |
+
<div class="grid md:grid-cols-3 gap-8">
|
| 151 |
+
<div class="bg-gray-800 p-8 rounded-xl">
|
| 152 |
+
<div class="flex items-center gap-4 mb-6">
|
| 153 |
+
<img src="http://static.photos/people/200x200/1" alt="Client" class="w-12 h-12 rounded-full">
|
| 154 |
+
<div>
|
| 155 |
+
<h4 class="font-bold">Sarah Johnson</h4>
|
| 156 |
+
<p class="text-sm text-gray-400">CEO, TechCorp</p>
|
| 157 |
+
</div>
|
| 158 |
+
</div>
|
| 159 |
+
<p class="text-gray-300">
|
| 160 |
+
"Phantom Digital transformed our online presence with their innovative approach and technical expertise."
|
| 161 |
+
</p>
|
| 162 |
+
</div>
|
| 163 |
+
<div class="bg-gray-800 p-8 rounded-xl">
|
| 164 |
+
<div class="flex items-center gap-4 mb-6">
|
| 165 |
+
<img src="http://static.photos/people/200x200/2" alt="Client" class="w-12 h-12 rounded-full">
|
| 166 |
+
<div>
|
| 167 |
+
<h4 class="font-bold">Michael Chen</h4>
|
| 168 |
+
<p class="text-sm text-gray-400">CMO, RetailX</p>
|
| 169 |
+
</div>
|
| 170 |
+
</div>
|
| 171 |
+
<p class="text-gray-300">
|
| 172 |
+
"The mobile app they developed exceeded our expectations and drove a 40% increase in engagement."
|
| 173 |
+
</p>
|
| 174 |
+
</div>
|
| 175 |
+
<div class="bg-gray-800 p-8 rounded-xl">
|
| 176 |
+
<div class="flex items-center gap-4 mb-6">
|
| 177 |
+
<img src="http://static.photos/people/200x200/3" alt="Client" class="w-12 h-12 rounded-full">
|
| 178 |
+
<div>
|
| 179 |
+
<h4 class="font-bold">Emma Rodriguez</h4>
|
| 180 |
+
<p class="text-sm text-gray-400">Director, FinTech</p>
|
| 181 |
+
</div>
|
| 182 |
+
</div>
|
| 183 |
+
<p class="text-gray-300">
|
| 184 |
+
"Their strategic guidance helped us navigate digital transformation successfully."
|
| 185 |
+
</p>
|
| 186 |
+
</div>
|
| 187 |
+
</div>
|
| 188 |
+
</section>
|
| 189 |
+
|
| 190 |
+
<!-- Contact Section -->
|
| 191 |
+
<section id="contact" class="mb-24">
|
| 192 |
+
<div class="bg-gradient-to-r from-gray-800 to-gray-900 rounded-2xl p-8 md:p-12">
|
| 193 |
+
<div class="grid md:grid-cols-2 gap-12 items-center">
|
| 194 |
+
<div>
|
| 195 |
+
<h2 class="text-3xl font-bold mb-4">Ready to elevate your digital presence?</h2>
|
| 196 |
+
<p class="text-gray-400 mb-8">
|
| 197 |
+
Let's discuss how we can help you achieve your digital goals. Get in touch with our team today.
|
| 198 |
+
</p>
|
| 199 |
+
<div class="space-y-4">
|
| 200 |
+
<div class="flex items-center gap-4">
|
| 201 |
+
<div class="w-10 h-10 bg-cyan-500/10 rounded-lg flex items-center justify-center">
|
| 202 |
+
<i data-feather="mail" class="text-cyan-400"></i>
|
| 203 |
+
</div>
|
| 204 |
+
<div>
|
| 205 |
+
<p class="text-sm text-gray-400">Email us at</p>
|
| 206 |
+
<p class="font-medium">hello@phantom-digital.com</p>
|
| 207 |
+
</div>
|
| 208 |
+
</div>
|
| 209 |
+
<div class="flex items-center gap-4">
|
| 210 |
+
<div class="w-10 h-10 bg-cyan-500/10 rounded-lg flex items-center justify-center">
|
| 211 |
+
<i data-feather="phone" class="text-cyan-400"></i>
|
| 212 |
+
</div>
|
| 213 |
+
<div>
|
| 214 |
+
<p class="text-sm text-gray-400">Call us at</p>
|
| 215 |
+
<p class="font-medium">+1 (555) 123-4567</p>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
</div>
|
| 219 |
+
</div>
|
| 220 |
+
<div>
|
| 221 |
+
<form class="space-y-4">
|
| 222 |
+
<div>
|
| 223 |
+
<label for="name" class="block text-sm font-medium mb-1">Name</label>
|
| 224 |
+
<input type="text" id="name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-cyan-500">
|
| 225 |
+
</div>
|
| 226 |
+
<div>
|
| 227 |
+
<label for="email" class="block text-sm font-medium mb-1">Email</label>
|
| 228 |
+
<input type="email" id="email" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-cyan-500">
|
| 229 |
+
</div>
|
| 230 |
+
<div>
|
| 231 |
+
<label for="message" class="block text-sm font-medium mb-1">Message</label>
|
| 232 |
+
<textarea id="message" rows="4" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-cyan-500"></textarea>
|
| 233 |
+
</div>
|
| 234 |
+
<button type="submit" class="w-full bg-gradient-to-r from-cyan-500 to-blue-600 text-white font-medium py-3 px-6 rounded-lg hover:opacity-90 transition">
|
| 235 |
+
Send Message
|
| 236 |
+
</button>
|
| 237 |
+
</form>
|
| 238 |
+
</div>
|
| 239 |
+
</div>
|
| 240 |
+
</div>
|
| 241 |
+
</section>
|
| 242 |
+
</main>
|
| 243 |
+
|
| 244 |
+
<custom-footer></custom-footer>
|
| 245 |
+
|
| 246 |
+
<script src="components/navbar.js"></script>
|
| 247 |
+
<script src="components/footer.js"></script>
|
| 248 |
+
<script src="script.js"></script>
|
| 249 |
+
<script>feather.replace();</script>
|
| 250 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 251 |
+
</body>
|
| 252 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 2 |
+
// Smooth scrolling for anchor links
|
| 3 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 4 |
+
anchor.addEventListener('click', function (e) {
|
| 5 |
+
e.preventDefault();
|
| 6 |
+
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
| 7 |
+
behavior: 'smooth'
|
| 8 |
+
});
|
| 9 |
+
});
|
| 10 |
+
});
|
| 11 |
+
|
| 12 |
+
// Dark mode toggle (if needed)
|
| 13 |
+
const darkModeToggle = document.getElementById('darkModeToggle');
|
| 14 |
+
if (darkModeToggle) {
|
| 15 |
+
darkModeToggle.addEventListener('click', () => {
|
| 16 |
+
document.documentElement.classList.toggle('dark');
|
| 17 |
+
localStorage.setItem('darkMode', document.documentElement.classList.contains('dark'));
|
| 18 |
+
});
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
// Check for saved dark mode preference
|
| 22 |
+
if (localStorage.getItem('darkMode') === 'true' ||
|
| 23 |
+
(!localStorage.getItem('darkMode') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
| 24 |
+
document.documentElement.classList.add('dark');
|
| 25 |
+
} else {
|
| 26 |
+
document.documentElement.classList.remove('dark');
|
| 27 |
+
}
|
| 28 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,41 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
margin-top: 0;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 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 |
+
/* Custom scrollbar */
|
| 9 |
+
::-webkit-scrollbar {
|
| 10 |
+
width: 8px;
|
| 11 |
}
|
| 12 |
|
| 13 |
+
::-webkit-scrollbar-track {
|
| 14 |
+
background: #1e293b;
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
+
::-webkit-scrollbar-thumb {
|
| 18 |
+
background: #334155;
|
| 19 |
+
border-radius: 4px;
|
|
|
|
|
|
|
| 20 |
}
|
| 21 |
|
| 22 |
+
::-webkit-scrollbar-thumb:hover {
|
| 23 |
+
background: #475569;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
}
|
| 25 |
|
| 26 |
+
/* Animation classes */
|
| 27 |
+
.animate-float {
|
| 28 |
+
animation: float 6s ease-in-out infinite;
|
| 29 |
}
|
| 30 |
+
|
| 31 |
+
@keyframes float {
|
| 32 |
+
0% { transform: translateY(0px); }
|
| 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 |
+
}
|