28 lines
568 B
PHP
28 lines
568 B
PHP
@extends('layouts.site')
|
||
|
||
@section('title', t('Kitaplarımız'))
|
||
|
||
@push('styles')
|
||
@include('templates.books.css.main')
|
||
@endpush
|
||
|
||
@section('content')
|
||
<div class="grow shrink-0">
|
||
|
||
{{-- Hero Section --}}
|
||
@include('templates.books.sections.hero')
|
||
|
||
{{-- Features Section (Book Showcase) --}}
|
||
@include('templates.books.sections.features')
|
||
|
||
{{-- Contact Section --}}
|
||
@include('templates.books.sections.contact')
|
||
|
||
</div>
|
||
@endsection
|
||
|
||
@push('scripts')
|
||
@include('templates.books.js.global')
|
||
@include('templates.books.js.slider')
|
||
@endpush
|