Realmeas commited on
Commit
6166c49
·
verified ·
1 Parent(s): 67fb3b6

https://mobile-tracker-free.com/

Browse files
Files changed (6) hide show
  1. README.md +8 -5
  2. components/footer.js +80 -0
  3. components/navbar.js +101 -0
  4. index.html +131 -19
  5. script.js +28 -0
  6. style.css +24 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Https Mobile Track Bw8ruzg
3
- emoji: 🏃
4
- colorFrom: pink
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: https---mobile-track-bw8ruzg
3
+ colorFrom: red
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,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ .footer-link {
7
+ transition: color 0.2s ease;
8
+ }
9
+ .footer-link:hover {
10
+ color: #6366f1;
11
+ }
12
+ .social-icon {
13
+ transition: all 0.3s ease;
14
+ }
15
+ .social-icon:hover {
16
+ transform: translateY(-3px);
17
+ }
18
+ </style>
19
+ <footer class="bg-gray-800 text-white py-12">
20
+ <div class="container mx-auto px-4">
21
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
22
+ <div class="md:col-span-2">
23
+ <div class="flex items-center mb-4">
24
+ <i data-feather="shield" class="text-indigo-400 mr-2"></i>
25
+ <span class="text-xl font-bold">TrackMeNot</span>
26
+ </div>
27
+ <p class="text-gray-400 mb-4">
28
+ Protecting your digital privacy since 2023. TrackMeNot helps you browse freely without being tracked.
29
+ </p>
30
+ <div class="flex space-x-4">
31
+ <a href="#" class="social-icon text-gray-400 hover:text-indigo-400">
32
+ <i data-feather="twitter"></i>
33
+ </a>
34
+ <a href="#" class="social-icon text-gray-400 hover:text-indigo-400">
35
+ <i data-feather="facebook"></i>
36
+ </a>
37
+ <a href="#" class="social-icon text-gray-400 hover:text-indigo-400">
38
+ <i data-feather="instagram"></i>
39
+ </a>
40
+ <a href="#" class="social-icon text-gray-400 hover:text-indigo-400">
41
+ <i data-feather="github"></i>
42
+ </a>
43
+ </div>
44
+ </div>
45
+
46
+ <div>
47
+ <h3 class="text-lg font-semibold mb-4">Product</h3>
48
+ <ul class="space-y-2">
49
+ <li><a href="#features" class="footer-link text-gray-400">Features</a></li>
50
+ <li><a href="#how-it-works" class="footer-link text-gray-400">How It Works</a></li>
51
+ <li><a href="#download" class="footer-link text-gray-400">Download</a></li>
52
+ <li><a href="#" class="footer-link text-gray-400">Pricing</a></li>
53
+ </ul>
54
+ </div>
55
+
56
+ <div>
57
+ <h3 class="text-lg font-semibold mb-4">Company</h3>
58
+ <ul class="space-y-2">
59
+ <li><a href="#" class="footer-link text-gray-400">About Us</a></li>
60
+ <li><a href="#" class="footer-link text-gray-400">Privacy Policy</a></li>
61
+ <li><a href="#" class="footer-link text-gray-400">Terms of Service</a></li>
62
+ <li><a href="#" class="footer-link text-gray-400">Contact Us</a></li>
63
+ </ul>
64
+ </div>
65
+ </div>
66
+
67
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
68
+ <p>&copy; 2023 TrackMeNot. All rights reserved.</p>
69
+ </div>
70
+ </div>
71
+ </footer>
72
+
73
+ <script>
74
+ feather.replace();
75
+ </script>
76
+ `;
77
+ }
78
+ }
79
+
80
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ .navbar {
7
+ transition: all 0.3s ease;
8
+ }
9
+ .navbar.scrolled {
10
+ @apply shadow-md bg-white;
11
+ }
12
+ .nav-link {
13
+ position: relative;
14
+ }
15
+ .nav-link::after {
16
+ content: '';
17
+ position: absolute;
18
+ width: 0;
19
+ height: 2px;
20
+ bottom: -2px;
21
+ left: 0;
22
+ background-color: #6366f1;
23
+ transition: width 0.3s ease;
24
+ }
25
+ .nav-link:hover::after {
26
+ width: 100%;
27
+ }
28
+ .mobile-menu {
29
+ max-height: 0;
30
+ overflow: hidden;
31
+ transition: max-height 0.3s ease-out;
32
+ }
33
+ .mobile-menu.open {
34
+ max-height: 500px;
35
+ }
36
+ </style>
37
+ <nav class="navbar fixed w-full z-50 bg-white/80 backdrop-blur-sm">
38
+ <div class="container mx-auto px-4 py-4">
39
+ <div class="flex justify-between items-center">
40
+ <a href="/" class="flex items-center">
41
+ <i data-feather="shield" class="text-indigo-600 mr-2"></i>
42
+ <span class="text-xl font-bold text-gray-800">TrackMeNot</span>
43
+ </a>
44
+
45
+ <div class="hidden md:flex items-center space-x-8">
46
+ <a href="#features" class="nav-link text-gray-600 hover:text-gray-900">Features</a>
47
+ <a href="#how-it-works" class="nav-link text-gray-600 hover:text-gray-900">How It Works</a>
48
+ <a href="#download" class="nav-link text-gray-600 hover:text-gray-900">Download</a>
49
+ <a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg font-medium transition duration-300">Get Started</a>
50
+ </div>
51
+
52
+ <button id="mobile-menu-button" class="md:hidden text-gray-600 focus:outline-none">
53
+ <i data-feather="menu"></i>
54
+ </button>
55
+ </div>
56
+
57
+ <div id="mobile-menu" class="mobile-menu md:hidden">
58
+ <div class="pt-4 pb-2 space-y-2">
59
+ <a href="#features" class="block px-3 py-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-100">Features</a>
60
+ <a href="#how-it-works" class="block px-3 py-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-100">How It Works</a>
61
+ <a href="#download" class="block px-3 py-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-100">Download</a>
62
+ <a href="#" class="block mt-2 bg-indigo-600 text-white px-4 py-2 rounded-lg font-medium text-center">Get Started</a>
63
+ </div>
64
+ </div>
65
+ </div>
66
+ </nav>
67
+
68
+ <script>
69
+ feather.replace();
70
+
71
+ document.addEventListener('DOMContentLoaded', function() {
72
+ const mobileMenuButton = this.shadowRoot.getElementById('mobile-menu-button');
73
+ const mobileMenu = this.shadowRoot.getElementById('mobile-menu');
74
+
75
+ mobileMenuButton.addEventListener('click', function() {
76
+ mobileMenu.classList.toggle('open');
77
+ const icon = mobileMenuButton.querySelector('i');
78
+ if (mobileMenu.classList.contains('open')) {
79
+ icon.setAttribute('data-feather', 'x');
80
+ } else {
81
+ icon.setAttribute('data-feather', 'menu');
82
+ }
83
+ feather.replace();
84
+ });
85
+
86
+ // Change navbar style on scroll
87
+ window.addEventListener('scroll', function() {
88
+ const navbar = this.shadowRoot.querySelector('.navbar');
89
+ if (window.scrollY > 10) {
90
+ navbar.classList.add('scrolled');
91
+ } else {
92
+ navbar.classList.remove('scrolled');
93
+ }
94
+ });
95
+ });
96
+ </script>
97
+ `;
98
+ }
99
+ }
100
+
101
+ customElements.define('custom-navbar', CustomNavbar);
index.html CHANGED
@@ -1,19 +1,131 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>TrackMeNot - Mobile Tracker Free</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="components/navbar.js"></script>
12
+ <script src="components/footer.js"></script>
13
+ </head>
14
+ <body class="bg-gray-50">
15
+ <custom-navbar></custom-navbar>
16
+
17
+ <main class="container mx-auto px-4 py-12">
18
+ <!-- Hero Section -->
19
+ <section class="text-center py-20">
20
+ <h1 class="text-5xl font-bold text-gray-800 mb-6">Take Back Your Privacy</h1>
21
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10">
22
+ TrackMeNot helps you detect and block mobile tracking attempts in real-time.
23
+ Stay anonymous and protect your digital footprint.
24
+ </p>
25
+ <div class="flex justify-center gap-4">
26
+ <a href="#download" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-lg font-medium transition duration-300">
27
+ Download Now
28
+ </a>
29
+ <a href="#how-it-works" class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-8 py-3 rounded-lg font-medium transition duration-300">
30
+ How It Works
31
+ </a>
32
+ </div>
33
+ </section>
34
+
35
+ <!-- Features Section -->
36
+ <section id="features" class="py-16">
37
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Powerful Protection Features</h2>
38
+ <div class="grid md:grid-cols-3 gap-8">
39
+ <!-- Feature 1 -->
40
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
41
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
42
+ <i data-feather="shield" class="text-indigo-600"></i>
43
+ </div>
44
+ <h3 class="text-xl font-semibold mb-3">Real-time Tracking Detection</h3>
45
+ <p class="text-gray-600">Identifies and blocks tracking attempts as they happen, keeping your data private.</p>
46
+ </div>
47
+
48
+ <!-- Feature 2 -->
49
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
50
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
51
+ <i data-feather="eye-off" class="text-indigo-600"></i>
52
+ </div>
53
+ <h3 class="text-xl font-semibold mb-3">Anonymous Browsing</h3>
54
+ <p class="text-gray-600">Prevents websites and apps from collecting your personal information.</p>
55
+ </div>
56
+
57
+ <!-- Feature 3 -->
58
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300">
59
+ <div class="w-14 h-14 bg-indigo-100 rounded-full flex items-center justify-center mb-4">
60
+ <i data-feather="battery" class="text-indigo-600"></i>
61
+ </div>
62
+ <h3 class="text-xl font-semibold mb-3">Battery Efficient</h3>
63
+ <p class="text-gray-600">Runs in the background without draining your battery or slowing your device.</p>
64
+ </div>
65
+ </div>
66
+ </section>
67
+
68
+ <!-- How It Works Section -->
69
+ <section id="how-it-works" class="py-16 bg-gray-100 rounded-xl px-8">
70
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">How TrackMeNot Works</h2>
71
+ <div class="max-w-4xl mx-auto">
72
+ <div class="flex flex-col md:flex-row gap-8 items-center mb-12">
73
+ <div class="md:w-1/2">
74
+ <h3 class="text-2xl font-semibold mb-4">1. Download & Install</h3>
75
+ <p class="text-gray-600">Get our lightweight app from the App Store or Google Play. Installation takes less than a minute.</p>
76
+ </div>
77
+ <div class="md:w-1/2">
78
+ <img src="http://static.photos/technology/640x360/1" alt="Download app" class="rounded-lg shadow-md">
79
+ </div>
80
+ </div>
81
+
82
+ <div class="flex flex-col md:flex-row-reverse gap-8 items-center mb-12">
83
+ <div class="md:w-1/2">
84
+ <h3 class="text-2xl font-semibold mb-4">2. Automatic Protection</h3>
85
+ <p class="text-gray-600">TrackMeNot runs silently in the background, analyzing all network traffic for tracking attempts.</p>
86
+ </div>
87
+ <div class="md:w-1/2">
88
+ <img src="http://static.photos/technology/640x360/2" alt="App interface" class="rounded-lg shadow-md">
89
+ </div>
90
+ </div>
91
+
92
+ <div class="flex flex-col md:flex-row gap-8 items-center">
93
+ <div class="md:w-1/2">
94
+ <h3 class="text-2xl font-semibold mb-4">3. Detailed Reports</h3>
95
+ <p class="text-gray-600">View comprehensive reports showing which trackers were blocked and what data they tried to collect.</p>
96
+ </div>
97
+ <div class="md:w-1/2">
98
+ <img src="http://static.photos/technology/640x360/3" alt="Reports" class="rounded-lg shadow-md">
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </section>
103
+
104
+ <!-- Download Section -->
105
+ <section id="download" class="py-20 text-center">
106
+ <div class="bg-indigo-600 rounded-2xl p-12 text-white">
107
+ <h2 class="text-3xl font-bold mb-6">Ready to Take Control?</h2>
108
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Download TrackMeNot today and start browsing with confidence.</p>
109
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
110
+ <a href="#" class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold flex items-center justify-center gap-2">
111
+ <i data-feather="download"></i>
112
+ App Store
113
+ </a>
114
+ <a href="#" class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold flex items-center justify-center gap-2">
115
+ <i data-feather="download"></i>
116
+ Google Play
117
+ </a>
118
+ </div>
119
+ </div>
120
+ </section>
121
+ </main>
122
+
123
+ <custom-footer></custom-footer>
124
+
125
+ <script>
126
+ feather.replace();
127
+ </script>
128
+ <script src="script.js"></script>
129
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
130
+ </body>
131
+ </html>
script.js ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Main JavaScript file for TrackMeNot
2
+
3
+ document.addEventListener('DOMContentLoaded', function() {
4
+ // Smooth scrolling for anchor links
5
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
6
+ anchor.addEventListener('click', function (e) {
7
+ e.preventDefault();
8
+
9
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
10
+ behavior: 'smooth'
11
+ });
12
+ });
13
+ });
14
+
15
+ // Animation for feature cards
16
+ const featureCards = document.querySelectorAll('.feature-card');
17
+ const observer = new IntersectionObserver((entries) => {
18
+ entries.forEach(entry => {
19
+ if (entry.isIntersecting) {
20
+ entry.target.classList.add('animate-fadeIn');
21
+ }
22
+ });
23
+ }, { threshold: 0.1 });
24
+
25
+ featureCards.forEach(card => {
26
+ observer.observe(card);
27
+ });
28
+ });
style.css CHANGED
@@ -1,28 +1,34 @@
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
28
  }
 
 
 
 
 
1
+ /* Custom styles that can't be achieved with Tailwind */
2
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
3
+
4
  body {
5
+ font-family: 'Inter', sans-serif;
6
+ scroll-behavior: smooth;
7
+ }
8
+
9
+ /* Custom scrollbar */
10
+ ::-webkit-scrollbar {
11
+ width: 8px;
12
  }
13
 
14
+ ::-webkit-scrollbar-track {
15
+ background: #f1f1f1;
 
16
  }
17
 
18
+ ::-webkit-scrollbar-thumb {
19
+ background: #888;
20
+ border-radius: 4px;
 
 
21
  }
22
 
23
+ ::-webkit-scrollbar-thumb:hover {
24
+ background: #555;
 
 
 
 
25
  }
26
 
27
+ /* Animation for features */
28
+ .feature-card {
29
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
30
  }
31
+
32
+ .feature-card:hover {
33
+ transform: translateY(-5px);
34
+ }