File size: 4,931 Bytes
4cb0a1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
class CustomFooter extends HTMLElement {
    connectedCallback() {
        this.attachShadow({ mode: 'open' });
        this.shadowRoot.innerHTML = `
            <style>
                :host {
                    display: block;
                    background-color: #020617;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                }
                
                .footer-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 2rem;
                }
                
                .footer-link {
                    transition: color 0.3s ease, transform 0.3s ease;
                }
                
                .footer-link:hover {
                    color: #7e22ce;
                    transform: translateX(5px);
                }
                
                .social-icon {
                    transition: all 0.3s ease;
                }
                
                .social-icon:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
                }
            </style>
            
            <footer class="py-12">
                <div class="container mx-auto px-6">
                    <div class="footer-grid mb-12">
                        <div>
                            <h3 class="text-xl font-bold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-primary to-secondary">
                                PixelPulse
                            </h3>
<p class="text-gray-400 mb-4">
                                AI-Powered Creative Studio specializing in board games, Kickstarter campaigns, and digital brands.
                            </p>
                        </div>
                        
                        <div>
                            <h4 class="text-lg font-semibold mb-4 text-white">Services</h4>
                            <ul class="space-y-2">
                                <li><a href="#" class="footer-link text-gray-400">Kickstarter Videos</a></li>
                                <li><a href="#" class="footer-link text-gray-400">Board Game Design</a></li>
                                <li><a href="#" class="footer-link text-gray-400">AI Art & Design</a></li>
                                <li><a href="#" class="footer-link text-gray-400">3D Mockups</a></li>
                            </ul>
                        </div>
                        
                        <div>
                            <h4 class="text-lg font-semibold mb-4 text-white">Quick Links</h4>
                            <ul class="space-y-2">
                                <li><a href="#about" class="footer-link text-gray-400">About Us</a></li>
                                <li><a href="#portfolio" class="footer-link text-gray-400">Portfolio</a></li>
                                <li><a href="#services" class="footer-link text-gray-400">Services</a></li>
                                <li><a href="#contact" class="footer-link text-gray-400">Contact</a></li>
                            </ul>
                        </div>
                        
                        <div>
                            <h4 class="text-lg font-semibold mb-4 text-white">Connect</h4>
                            <div class="flex space-x-4">
                                <a href="#" class="social-icon w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-primary">
                                    <i data-feather="instagram"></i>
                                </a>
                                <a href="#" class="social-icon w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-blue-400">
                                    <i data-feather="twitter"></i>
                                </a>
                                <a href="#" class="social-icon w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-red-500">
                                    <i data-feather="youtube"></i>
                                </a>
                                <a href="#" class="social-icon w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-green-500">
                                    <i data-feather="dollar-sign"></i>
                                </a>
                            </div>
                        </div>
                    </div>
                    
                    <div class="pt-8 border-t border-gray-800 text-center text-gray-500">
                        <p>© ${new Date().getFullYear()} MultimediaOne. All rights reserved.</p>
                    </div>
                </div>
            </footer>
        `;
    }
}

customElements.define('custom-footer', CustomFooter);