mirror of
https://git.hexahost.dev/smueller/HexaHost-Frontend.git
synced 2026-06-02 03:58:43 +00:00
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:
@@ -61,7 +61,7 @@ HexaHost-Frontend/
|
||||
│ ├── vps.php # Virtual Private Server
|
||||
│ ├── mail-gateway.php # Mail Gateway
|
||||
│ ├── webhosting.php # Webhosting
|
||||
│ ├── about.php # Über uns
|
||||
│ ├── about.php # Über mich
|
||||
│ ├── contact.php # Kontaktseite
|
||||
│ ├── contact-handler.php # Kontaktformular-Backend
|
||||
│ ├── impressum.php # Impressum
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<div class="footer-section">
|
||||
<h4>Unternehmen</h4>
|
||||
<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="/impressum">Impressum</a></li>
|
||||
<li><a href="/datenschutz">Datenschutz</a></li>
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
</ul>
|
||||
</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>
|
||||
</ul>
|
||||
<div class="nav-toggle">
|
||||
|
||||
@@ -148,9 +148,9 @@
|
||||
</div>
|
||||
|
||||
<div class="demo-card">
|
||||
<h3>ℹ️ Über uns</h3>
|
||||
<h3>ℹ️ Über mich</h3>
|
||||
<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 class="demo-card">
|
||||
|
||||
@@ -82,7 +82,7 @@ Eine neue `mail-gateway.php`-Datei wurde erstellt mit:
|
||||
```
|
||||
public/
|
||||
├── index.php (Hauptseite)
|
||||
├── about.php (Über uns)
|
||||
├── about.php (Über mich)
|
||||
├── contact.php (Kontakt)
|
||||
├── vpc.php (Virtual Private Container)
|
||||
├── vps.php (Virtual Private Server)
|
||||
|
||||
@@ -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)
|
||||
- `vps.php` - Virtual Private Server (vorher vps.html)
|
||||
- `webhosting.php` - Webhosting (vorher webhosting.html)
|
||||
- `about.php` - Über uns (vorher about.html)
|
||||
- `about.php` - Über mich (vorher about.html)
|
||||
|
||||
## Verwendung
|
||||
|
||||
@@ -125,7 +125,7 @@ includeHeader('Seitentitel', 'Beschreibung', 'seitenname');
|
||||
- `vpc.php` - Virtual Private Container (PHP-Version)
|
||||
- `vps.php` - Virtual Private Server (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)
|
||||
- `index.html` - Alte HTML-Version (kann gelöscht werden)
|
||||
- `vpc.html` - Alte HTML-Version (kann gelöscht werden)
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
require_once __DIR__ . '/../backend/includes/functions.php';
|
||||
|
||||
// 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.';
|
||||
$current_page = 'about';
|
||||
|
||||
@@ -18,7 +18,7 @@ includeHeader($page_title, $page_description, $current_page);
|
||||
<?php
|
||||
generateBreadcrumbs([
|
||||
['title' => 'Home', 'url' => 'index.php'],
|
||||
['title' => 'Über uns', 'url' => '']
|
||||
['title' => 'Über mich', 'url' => '']
|
||||
]);
|
||||
?>
|
||||
<h1 class="about-hero-title">
|
||||
|
||||
Reference in New Issue
Block a user