areya-energy/content/master.blade.php

61 lines
2.0 KiB
PHP

<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('template.'.config('settings.template').'.content.includes.meta')
@include('template.'.config('settings.template').'.content.includes.css')
@include('template.'.config('settings.template').'.content.includes.integrations')
@yield('head')
</head>
<body>
<nav style="background-color: #546c8a" class="pt-1 pb-1">
<div class="container">
<div class="row">
<div class="col text-end text-light">
<span>+49 221 6695 8090</span>
<span class="ms-4 me-4">support@areya.energy</span>
<span>Mo-Do: 9-17 Uhr, Fr: 9-15 Uhr</span>
</div>
</div>
</div>
</nav>
<nav style="background-color: #79b27f" class="pt-5 pb-5">
<div class="container">
<div class="row">
<div class="col">
<a href="{{url('/')}}" class="fs-2 fw-bold text-decoration-none">Areya Energy</a>
</div>
<div class="col fs-5 mt-2 text-center ">
<a href="" class="text-decoration-none mt-2 fw-bold">Bakonkraftwerk</a>
</div>
<div class="col fs-5 mt-2 text-center ">
<a href="" class="text-decoration-none mt-2 fw-bold">Bakonkraftwerk</a>
</div>
<div class="col fs-5 mt-2 text-center ">
<a href="" class="text-decoration-none mt-2 fw-bold">Bakonkraftwerk</a>
</div>
<div class="col text-end">
<a href="" class="btn btn-primary">Produkte Anfragen</a>
</div>
</div>
</div>
</nav>
@yield('content')
@include('template.'.config('settings.template').'.content.includes.footer')
@include('template.'.config('settings.template').'.content.includes.scripts')
@yield('scripts')
@yield('end_scripts')
</body>
</html>