33 lines
787 B
PHP
33 lines
787 B
PHP
@extends('layouts.site', ['header' => 'partials.header-demo26', 'footer' => 'partials.footer'])
|
|
|
|
@section('title', t('neler-yapariz.page_title'))
|
|
|
|
@push('styles')
|
|
<style>
|
|
.navbar.navbar-light.fixed .btn:not(.btn-expand):not(.btn-gradient) {
|
|
background: #e31e24 !important;
|
|
border-color: #e31e24 !important;
|
|
color: #ffffff !important;
|
|
}
|
|
.navbar.center-nav .nav-link {
|
|
font-weight: 700;
|
|
letter-spacing: -0.01rem;
|
|
}
|
|
.navbar.center-nav .nav-link:hover,
|
|
.navbar.center-nav .nav-link:focus {
|
|
color: #e31e24 !important;
|
|
}
|
|
@media (max-width: 991.98px) {
|
|
.navbar-expand-lg .navbar-collapse .dropdown-toggle:after {
|
|
color: #ffffff !important;
|
|
}
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
@include('templates.neler-yapariz.hero')
|
|
|
|
@include('templates.home.contact')
|
|
@endsection
|