diff --git a/README.md b/README.md
index 1b50afe..a684640 100644
--- a/README.md
+++ b/README.md
@@ -73,10 +73,12 @@ MIN_STORNO_TIMESPAN=24
# Legal Information (Impressum/Datenschutz)
COMPANY_NAME=Stargirlnails Kiel
OWNER_NAME=Inhaber Name
-ADDRESS_STREET=Musterstraße 123
+ADDRESS_STREET=Liebigstr. 15
ADDRESS_CITY=Kiel
-ADDRESS_POSTAL_CODE=24103
+ADDRESS_POSTAL_CODE=24145
ADDRESS_COUNTRY=Deutschland
+ADDRESS_LATITUDE=54.3233 # Optional: GPS-Koordinaten für Karte
+ADDRESS_LONGITUDE=10.1228 # Optional: GPS-Koordinaten für Karte
CONTACT_PHONE=+49 431 123456
CONTACT_EMAIL=info@stargirlnails.de
TAX_ID=12/345/67890 # Optional
diff --git a/src/client/app.tsx b/src/client/app.tsx
index 4b06a50..e3c40f5 100644
--- a/src/client/app.tsx
+++ b/src/client/app.tsx
@@ -251,7 +251,7 @@ function App() {
diff --git a/src/client/components/legal-page.tsx b/src/client/components/legal-page.tsx
index 532c58f..fa3b735 100644
--- a/src/client/components/legal-page.tsx
+++ b/src/client/components/legal-page.tsx
@@ -1,6 +1,21 @@
import React, { useState } from "react";
import { useQuery } from "@tanstack/react-query";
+// Helper function to generate map coordinates based on address
+function generateMapUrl(address: any) {
+ // Use coordinates from config or default to Kiel coordinates
+ const lat = address.latitude || 54.3233;
+ const lon = address.longitude || 10.1228;
+
+ // Generate bounding box around the coordinates (0.05 degrees ≈ 5km radius)
+ const bbox = `${lon - 0.05},${lat - 0.05},${lon + 0.05},${lat + 0.05}`;
+
+ const embedUrl = `https://www.openstreetmap.org/export/embed.html?bbox=${bbox}&layer=mapnik&marker=${lat},${lon}`;
+ const fullUrl = `https://www.openstreetmap.org/?mlat=${lat}&mlon=${lon}#map=16/${lat}/${lon}`;
+
+ return { embedUrl, fullUrl };
+}
+
export default function LegalPage() {
const [activeSection, setActiveSection] = useState<"impressum" | "datenschutz">("impressum");
@@ -137,6 +152,37 @@ export default function LegalPage() {
{legalConfig.address.postalCode} {legalConfig.address.city}
{legalConfig.address.country}