Files
citrus/resources/views/templates/books/books.blade.php
T
2026-02-04 00:30:43 +03:00

28 lines
568 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@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