james123231 commited on
Commit
ba6f098
·
verified ·
1 Parent(s): e5c2682

Menuen / header fra index.html skal være den samme på alle sider! - Follow Up Deployment

Browse files
Files changed (4) hide show
  1. index.html +56 -3
  2. koncept.html +36 -6
  3. partner-invitation.html +32 -3
  4. prompts.txt +5 -1
index.html CHANGED
@@ -65,6 +65,8 @@
65
  <img src="https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png" alt="SoulMatch Logo" class="h-10 w-10 rounded-full">
66
  <span class="text-xl font-bold text-primary">SoulMatch</span>
67
  </div>
 
 
68
  <nav class="hidden md:flex space-x-6">
69
  <a href="index.html" class="font-semibold hover:text-primary transition">Hjem</a>
70
  <a href="om-os.html" class="font-semibold hover:text-primary transition">Om os</a>
@@ -74,11 +76,41 @@
74
  <a href="partner-invitation.html" class="font-semibold hover:text-primary transition">Bliv Partner</a>
75
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
76
  </nav>
 
77
  <div class="flex items-center space-x-3">
78
- <button class="px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
 
 
 
 
 
 
 
79
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
80
- <i data-feather="moon" class="dark:hidden"></i>
81
- <i data-feather="sun" class="hidden dark:block"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  </button>
83
  </div>
84
  </div>
@@ -354,6 +386,27 @@
354
  }
355
  });
356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
  // Update theme toggle icon on load
358
  function updateThemeIcon() {
359
  const sunIcon = themeToggle.querySelector('[data-feather="sun"]');
 
65
  <img src="https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png" alt="SoulMatch Logo" class="h-10 w-10 rounded-full">
66
  <span class="text-xl font-bold text-primary">SoulMatch</span>
67
  </div>
68
+
69
+ <!-- Desktop Navigation -->
70
  <nav class="hidden md:flex space-x-6">
71
  <a href="index.html" class="font-semibold hover:text-primary transition">Hjem</a>
72
  <a href="om-os.html" class="font-semibold hover:text-primary transition">Om os</a>
 
76
  <a href="partner-invitation.html" class="font-semibold hover:text-primary transition">Bliv Partner</a>
77
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
78
  </nav>
79
+
80
  <div class="flex items-center space-x-3">
81
+ <!-- Mobile download button -->
82
+ <button class="md:hidden p-2 rounded-full bg-primary text-white hover:bg-primary-dark transition">
83
+ <i data-feather="download" class="w-5 h-5"></i>
84
+ </button>
85
+
86
+ <!-- Desktop download button -->
87
+ <button class="hidden md:block px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
88
+
89
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
90
+ <i data-feather="moon" class="dark:hidden w-5 h-5"></i>
91
+ <i data-feather="sun" class="hidden dark:block w-5 h-5"></i>
92
+ </button>
93
+
94
+ <!-- Mobile menu button -->
95
+ <button id="mobile-menu-button" class="md:hidden p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
96
+ <i data-feather="menu" class="block w-5 h-5"></i>
97
+ <i data-feather="x" class="hidden w-5 h-5"></i>
98
+ </button>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Mobile Navigation -->
103
+ <div id="mobile-menu" class="md:hidden hidden bg-white dark:bg-dark-surface border-t border-gray-200 dark:border-dark-border">
104
+ <div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
105
+ <a href="index.html" class="font-semibold py-2 hover:text-primary transition">Hjem</a>
106
+ <a href="om-os.html" class="font-semibold py-2 hover:text-primary transition">Om os</a>
107
+ <a href="koncept.html" class="font-semibold py-2 hover:text-primary transition">Koncept</a>
108
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Funktioner</a>
109
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Sikkerhed</a>
110
+ <a href="partner-invitation.html" class="font-semibold py-2 hover:text-primary transition">Bliv Partner</a>
111
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Kontakt</a>
112
+ <button class="w-full py-3 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition flex items-center justify-center">
113
+ <i data-feather="download" class="mr-2 w-5 h-5"></i> Download Appen
114
  </button>
115
  </div>
116
  </div>
 
386
  }
387
  });
388
 
389
+ // Mobile menu toggle
390
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
391
+ const mobileMenu = document.getElementById('mobile-menu');
392
+ const menuIcon = mobileMenuButton.querySelector('[data-feather="menu"]');
393
+ const closeIcon = mobileMenuButton.querySelector('[data-feather="x"]');
394
+
395
+ mobileMenuButton.addEventListener('click', function() {
396
+ mobileMenu.classList.toggle('hidden');
397
+ menuIcon.classList.toggle('hidden');
398
+ closeIcon.classList.toggle('hidden');
399
+ });
400
+
401
+ // Close mobile menu when clicking outside
402
+ document.addEventListener('click', function(event) {
403
+ if (!mobileMenu.contains(event.target) && !mobileMenuButton.contains(event.target) && !mobileMenu.classList.contains('hidden')) {
404
+ mobileMenu.classList.add('hidden');
405
+ menuIcon.classList.remove('hidden');
406
+ closeIcon.classList.add('hidden');
407
+ }
408
+ });
409
+
410
  // Update theme toggle icon on load
411
  function updateThemeIcon() {
412
  const sunIcon = themeToggle.querySelector('[data-feather="sun"]');
koncept.html CHANGED
@@ -62,11 +62,11 @@
62
  <header class="sticky top-0 z-50 bg-white dark:bg-dark-surface shadow-sm">
63
  <div class="container mx-auto px-4 py-3 flex justify-between items-center">
64
  <div class="flex items-center space-x-2">
65
- <a href="index.html">
66
- <img src="https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png" alt="SoulMatch Logo" class="h-10 w-10 rounded-full">
67
- </a>
68
  <span class="text-xl font-bold text-primary">SoulMatch</span>
69
  </div>
 
 
70
  <nav class="hidden md:flex space-x-6">
71
  <a href="index.html" class="font-semibold hover:text-primary transition">Hjem</a>
72
  <a href="om-os.html" class="font-semibold hover:text-primary transition">Om os</a>
@@ -76,11 +76,41 @@
76
  <a href="partner-invitation.html" class="font-semibold hover:text-primary transition">Bliv Partner</a>
77
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
78
  </nav>
 
79
  <div class="flex items-center space-x-3">
80
- <button class="px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
 
 
 
 
 
 
 
81
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
82
- <i data-feather="moon" class="dark:hidden"></i>
83
- <i data-feather="sun" class="hidden dark:block"></i>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  </button>
85
  </div>
86
  </div>
 
62
  <header class="sticky top-0 z-50 bg-white dark:bg-dark-surface shadow-sm">
63
  <div class="container mx-auto px-4 py-3 flex justify-between items-center">
64
  <div class="flex items-center space-x-2">
65
+ <img src="https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png" alt="SoulMatch Logo" class="h-10 w-10 rounded-full">
 
 
66
  <span class="text-xl font-bold text-primary">SoulMatch</span>
67
  </div>
68
+
69
+ <!-- Desktop Navigation -->
70
  <nav class="hidden md:flex space-x-6">
71
  <a href="index.html" class="font-semibold hover:text-primary transition">Hjem</a>
72
  <a href="om-os.html" class="font-semibold hover:text-primary transition">Om os</a>
 
76
  <a href="partner-invitation.html" class="font-semibold hover:text-primary transition">Bliv Partner</a>
77
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
78
  </nav>
79
+
80
  <div class="flex items-center space-x-3">
81
+ <!-- Mobile download button -->
82
+ <button class="md:hidden p-2 rounded-full bg-primary text-white hover:bg-primary-dark transition">
83
+ <i data-feather="download" class="w-5 h-5"></i>
84
+ </button>
85
+
86
+ <!-- Desktop download button -->
87
+ <button class="hidden md:block px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
88
+
89
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
90
+ <i data-feather="moon" class="dark:hidden w-5 h-5"></i>
91
+ <i data-feather="sun" class="hidden dark:block w-5 h-5"></i>
92
+ </button>
93
+
94
+ <!-- Mobile menu button -->
95
+ <button id="mobile-menu-button" class="md:hidden p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
96
+ <i data-feather="menu" class="block w-5 h-5"></i>
97
+ <i data-feather="x" class="hidden w-5 h-5"></i>
98
+ </button>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Mobile Navigation -->
103
+ <div id="mobile-menu" class="md:hidden hidden bg-white dark:bg-dark-surface border-t border-gray-200 dark:border-dark-border">
104
+ <div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
105
+ <a href="index.html" class="font-semibold py-2 hover:text-primary transition">Hjem</a>
106
+ <a href="om-os.html" class="font-semibold py-2 hover:text-primary transition">Om os</a>
107
+ <a href="koncept.html" class="font-semibold py-2 hover:text-primary transition">Koncept</a>
108
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Funktioner</a>
109
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Sikkerhed</a>
110
+ <a href="partner-invitation.html" class="font-semibold py-2 hover:text-primary transition">Bliv Partner</a>
111
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Kontakt</a>
112
+ <button class="w-full py-3 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition flex items-center justify-center">
113
+ <i data-feather="download" class="mr-2 w-5 h-5"></i> Download Appen
114
  </button>
115
  </div>
116
  </div>
partner-invitation.html CHANGED
@@ -76,13 +76,42 @@
76
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
77
  </nav>
78
  <div class="flex items-center space-x-3">
79
- <button class="px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
 
 
 
 
 
 
 
80
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
81
- <i data-feather="moon" class="dark:hidden"></i>
82
- <i data-feather="sun" class="hidden dark:block"></i>
 
 
 
 
 
 
83
  </button>
84
  </div>
85
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  </header>
87
 
88
  <!-- Hero Section -->
 
76
  <a href="#" class="font-semibold hover:text-primary transition">Kontakt</a>
77
  </nav>
78
  <div class="flex items-center space-x-3">
79
+ <!-- Mobile download button -->
80
+ <button class="md:hidden p-2 rounded-full bg-primary text-white hover:bg-primary-dark transition">
81
+ <i data-feather="download" class="w-5 h-5"></i>
82
+ </button>
83
+
84
+ <!-- Desktop download button -->
85
+ <button class="hidden md:block px-4 py-2 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition">Download</button>
86
+
87
  <button id="theme-toggle" class="p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
88
+ <i data-feather="moon" class="dark:hidden w-5 h-5"></i>
89
+ <i data-feather="sun" class="hidden dark:block w-5 h-5"></i>
90
+ </button>
91
+
92
+ <!-- Mobile menu button -->
93
+ <button id="mobile-menu-button" class="md:hidden p-2 rounded-full hover:bg-gray-200 dark:hover:bg-dark-surface-light">
94
+ <i data-feather="menu" class="block w-5 h-5"></i>
95
+ <i data-feather="x" class="hidden w-5 h-5"></i>
96
  </button>
97
  </div>
98
  </div>
99
+
100
+ <!-- Mobile Navigation -->
101
+ <div id="mobile-menu" class="md:hidden hidden bg-white dark:bg-dark-surface border-t border-gray-200 dark:border-dark-border">
102
+ <div class="container mx-auto px-4 py-4 flex flex-col space-y-4">
103
+ <a href="index.html" class="font-semibold py-2 hover:text-primary transition">Hjem</a>
104
+ <a href="om-os.html" class="font-semibold py-2 hover:text-primary transition">Om os</a>
105
+ <a href="koncept.html" class="font-semibold py-2 hover:text-primary transition">Koncept</a>
106
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Funktioner</a>
107
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Sikkerhed</a>
108
+ <a href="#" class="font-semibold py-2 hover:text-primary transition">Kontakt</a>
109
+ <button class="w-full py-3 rounded-full bg-primary text-white font-bold hover:bg-primary-dark transition flex items-center justify-center">
110
+ <i data-feather="download" class="mr-2 w-5 h-5"></i> Download Appen
111
+ </button>
112
+ </div>
113
+ </div>
114
+ </div>
115
  </header>
116
 
117
  <!-- Hero Section -->
prompts.txt CHANGED
@@ -1277,4 +1277,8 @@ Udskift billedet med dette billede: https://q1f3.c3.e2-9.dev/soulmatch-uploads-p
1277
  Udskift dette billede med det her billede: https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/web%20homepage/sikkerhed%20forst%20saa%20modes%20vi.png
1278
  Udskift dette billede med https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/web%20homepage/2cc3deac-164e-421c-b598-0e4189c11c78.webp
1279
  Skift logoet på alle sider til dette her: https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png
1280
- Lav menuen mere responsiv på alle sider, og flot "burger" menu på mobil
 
 
 
 
 
1277
  Udskift dette billede med det her billede: https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/web%20homepage/sikkerhed%20forst%20saa%20modes%20vi.png
1278
  Udskift dette billede med https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/web%20homepage/2cc3deac-164e-421c-b598-0e4189c11c78.webp
1279
  Skift logoet på alle sider til dette her: https://q1f3.c3.e2-9.dev/soulmatch-uploads-public/soulmatch%20-%20kun%20logo.png
1280
+ Lav menuen mere responsiv på alle sider, og flot "burger" menu på mobil
1281
+ Lav menu responsiv på alle enligheder på alle sider. Og husk at vise "Download" icon med på mobil inden burger menu.
1282
+ Du mangler at opdatere koncept.html med den nye menu
1283
+ Fra index.html gem menuen som et componment og tilføj dem og alle sider
1284
+ Menuen / header fra index.html skal være den samme på alle sider!