Start maintenance mode

This commit is contained in:
Murat Özkorkmaz
2025-10-10 11:53:45 +02:00
parent abb3cbc1bd
commit 8a3b127675
5 changed files with 51 additions and 10 deletions

View File

@@ -17,6 +17,7 @@
{% endblock %}
</head>
<body class="min-h-screen flex flex-col">
<!--
<div>
<span class="">default</span>
<span class="invisible sm:visible">sm</span>
@@ -25,7 +26,9 @@
<span class="invisible xl:visible">xl</span>
<span class="invisible 2xl:visible">2xl</span>
</div>
-->
{% block navigation %}
{% set current_path = app.request.get('_route') %}
<nav class="bg-white pt-16 pb-24">
<div class="px-4 sm:px-8 md:px-16 lg:px-32 flex justify-between items-center h-16">
@@ -34,7 +37,7 @@
</div>
<!-- Desktop Links -->
<div class="hidden md:flex space-x-1">
<!-- <div class="hidden md:flex space-x-1">
<span class="px-4 py-4 bg-white text-black">
<span class="py-1 {% if current_path == 'about_me'%}border-b-1 border-black{% endif %}">
<a href="{{ path('about_me') }}" class="font-thin">Über mich</a>
@@ -55,21 +58,21 @@
<a href="{{ path('contact') }}" class="font-thin">Kontakt</a>
</span>
</span>
</div>
</div> -->
<!-- Hamburger -->
<div class="md:hidden">
<!-- <div class="md:hidden">
<button id="menu-btn" class="focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div> -->
</div>
<!-- Mobile Drawer -->
<div id="mobile-menu" class="max-h-0 overflow-hidden md:hidden transition-all duration-300 ease-in-out">
<!-- <div id="mobile-menu" class="max-h-0 overflow-hidden md:hidden transition-all duration-300 ease-in-out">
<span class="px-3 py-4 bg-white text-black">
<span class="py-1 {% if current_path == 'about_me'%}border-b-1 border-black{% endif %}">
<a href="{{ path('about_me') }}" class="font-thin">Über mich</a>
@@ -90,14 +93,16 @@
<a href="{{ path('contact') }}" class="font-thin">Kontakt</a>
</span>
</span>
</div>
</nav>
</div> -->
</nav>
{% endblock %}
<main class="flex-grow">
{% block body %}{% endblock %}
</main>
{% block footer %}
<footer class="bg-black text-white">
<div class="px-4 sm:px-8 md:px-16 lg:px-32 pb-16">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 mt-16 mb-8">
@@ -127,7 +132,7 @@
</p>
</div>
</footer>
{% endblock %}
</body>
{% block javascripts %}

View File

@@ -0,0 +1,33 @@
{% extends 'base.html.twig' %}
{% block title %}Wartungsseite{% endblock %}
{% block navigation %}{% endblock %}
{% block body %}
<div class="flex flex-col items-center justify-center min-h-screen bg-white text-center text-gray-800">
<img class="max-w-35 md:max-w-50 mb-16 mt-8" src="{{ asset('images/logo.png') }}" alt="EC Logo">
<p class="text-2xl md:text-4xl noto-sans-display-100 mb-8 ml-8 mr-8">
Wir arbeiten daran, Ihnen ein noch besseres<br>Erlebnis zu bieten und führen wichtige Updates durch.
</p>
<p class="text-base md:text-2xl noto-sans-display-100 mb-8">
Wir sind bald wieder online!
</p>
<p class="text-base md:text-2xl noto-sans-display-100 mb-8">
Sie erreichen mich trotzdem unter:<br>
<a href="mailto:info@ec-architektur.de">info@ec-architektur.de</a><br>
Telefon: <a href="tel:+491788358358">+49 178 8358358</a>
</p>
<p class="text-base md:text-2xl noto-sans-display-100 mb-4">Vielen Dank für Ihr Verständnis!</p>
</div>
{% endblock %}