Update branding in multiple files to reflect personal ownership: Changed references from "Über uns" to "Über mich" in demo.html, README.md, footer.php, header.php, and about.php, enhancing the personal touch of the content.

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-08 14:43:31 +02:00
parent df705701f0
commit 29386b2ab6
7 changed files with 10 additions and 10 deletions

View File

@@ -61,7 +61,7 @@ HexaHost-Frontend/
│ ├── vps.php # Virtual Private Server │ ├── vps.php # Virtual Private Server
│ ├── mail-gateway.php # Mail Gateway │ ├── mail-gateway.php # Mail Gateway
│ ├── webhosting.php # Webhosting │ ├── webhosting.php # Webhosting
│ ├── about.php # Über uns │ ├── about.php # Über mich
│ ├── contact.php # Kontaktseite │ ├── contact.php # Kontaktseite
│ ├── contact-handler.php # Kontaktformular-Backend │ ├── contact-handler.php # Kontaktformular-Backend
│ ├── impressum.php # Impressum │ ├── impressum.php # Impressum

View File

@@ -24,7 +24,7 @@
<div class="footer-section"> <div class="footer-section">
<h4>Unternehmen</h4> <h4>Unternehmen</h4>
<ul> <ul>
<li><a href="/about">Über uns</a></li> <li><a href="/about">Über mich</a></li>
<li><a href="/contact">Kontakt</a></li> <li><a href="/contact">Kontakt</a></li>
<li><a href="/impressum">Impressum</a></li> <li><a href="/impressum">Impressum</a></li>
<li><a href="/datenschutz">Datenschutz</a></li> <li><a href="/datenschutz">Datenschutz</a></li>

View File

@@ -68,7 +68,7 @@
</ul> </ul>
</li> </li>
<li><a href="/it-dienstleistungen" class="nav-link <?php echo ($current_page === 'it-dienstleistungen') ? 'active' : ''; ?>">IT-Dienstleistungen</a></li> <li><a href="/it-dienstleistungen" class="nav-link <?php echo ($current_page === 'it-dienstleistungen') ? 'active' : ''; ?>">IT-Dienstleistungen</a></li>
<li><a href="/about" class="nav-link <?php echo ($current_page === 'about') ? 'active' : ''; ?>">Über uns</a></li> <li><a href="/about" class="nav-link <?php echo ($current_page === 'about') ? 'active' : ''; ?>">Über mich</a></li>
<li><a href="/contact" class="nav-link <?php echo ($current_page === 'contact') ? 'active' : ''; ?>">Kontakt</a></li> <li><a href="/contact" class="nav-link <?php echo ($current_page === 'contact') ? 'active' : ''; ?>">Kontakt</a></li>
</ul> </ul>
<div class="nav-toggle"> <div class="nav-toggle">

View File

@@ -148,9 +148,9 @@
</div> </div>
<div class="demo-card"> <div class="demo-card">
<h3> Über uns</h3> <h3> Über mich</h3>
<p>Unternehmensinformationen aus Niederbayern</p> <p>Unternehmensinformationen aus Niederbayern</p>
<a href="public/about.html">Über uns ansehen</a> <a href="public/about.html">Über mich ansehen</a>
</div> </div>
<div class="demo-card"> <div class="demo-card">

View File

@@ -82,7 +82,7 @@ Eine neue `mail-gateway.php`-Datei wurde erstellt mit:
``` ```
public/ public/
├── index.php (Hauptseite) ├── index.php (Hauptseite)
├── about.php (Über uns) ├── about.php (Über mich)
├── contact.php (Kontakt) ├── contact.php (Kontakt)
├── vpc.php (Virtual Private Container) ├── vpc.php (Virtual Private Container)
├── vps.php (Virtual Private Server) ├── vps.php (Virtual Private Server)

View File

@@ -19,7 +19,7 @@ Die Website wurde umstrukturiert, um Header und Footer in zentralen Dateien zu s
- `vpc.php` - Virtual Private Container (vorher vpc.html) - `vpc.php` - Virtual Private Container (vorher vpc.html)
- `vps.php` - Virtual Private Server (vorher vps.html) - `vps.php` - Virtual Private Server (vorher vps.html)
- `webhosting.php` - Webhosting (vorher webhosting.html) - `webhosting.php` - Webhosting (vorher webhosting.html)
- `about.php` - Über uns (vorher about.html) - `about.php` - Über mich (vorher about.html)
## Verwendung ## Verwendung
@@ -125,7 +125,7 @@ includeHeader('Seitentitel', 'Beschreibung', 'seitenname');
- `vpc.php` - Virtual Private Container (PHP-Version) - `vpc.php` - Virtual Private Container (PHP-Version)
- `vps.php` - Virtual Private Server (PHP-Version) - `vps.php` - Virtual Private Server (PHP-Version)
- `webhosting.php` - Webhosting (PHP-Version) - `webhosting.php` - Webhosting (PHP-Version)
- `about.php` - Über uns (PHP-Version) - `about.php` - Über mich (PHP-Version)
- `contact.html` - Alte HTML-Version (kann gelöscht werden) - `contact.html` - Alte HTML-Version (kann gelöscht werden)
- `index.html` - Alte HTML-Version (kann gelöscht werden) - `index.html` - Alte HTML-Version (kann gelöscht werden)
- `vpc.html` - Alte HTML-Version (kann gelöscht werden) - `vpc.html` - Alte HTML-Version (kann gelöscht werden)

View File

@@ -2,7 +2,7 @@
require_once __DIR__ . '/../backend/includes/functions.php'; require_once __DIR__ . '/../backend/includes/functions.php';
// Page configuration // Page configuration
$page_title = 'Über uns - HexaHost.de | Hosting aus Niederbayern'; $page_title = 'Über mich - HexaHost.de | Hosting aus Niederbayern';
$page_description = 'Erfahren Sie mehr über HexaHost.de - Ihr zuverlässiger Hosting-Partner aus Niederbayern. Moderne Technologie mit persönlichem Service.'; $page_description = 'Erfahren Sie mehr über HexaHost.de - Ihr zuverlässiger Hosting-Partner aus Niederbayern. Moderne Technologie mit persönlichem Service.';
$current_page = 'about'; $current_page = 'about';
@@ -18,7 +18,7 @@ includeHeader($page_title, $page_description, $current_page);
<?php <?php
generateBreadcrumbs([ generateBreadcrumbs([
['title' => 'Home', 'url' => 'index.php'], ['title' => 'Home', 'url' => 'index.php'],
['title' => 'Über uns', 'url' => ''] ['title' => 'Über mich', 'url' => '']
]); ]);
?> ?>
<h1 class="about-hero-title"> <h1 class="about-hero-title">