20 lines
476 B
PHP
20 lines
476 B
PHP
@php
|
|
$header = "partials.header";
|
|
$footer = "partials.footer";
|
|
@endphp
|
|
@extends('layouts.site')
|
|
|
|
@section('title', 'Anasayfa')
|
|
|
|
@section('content')
|
|
@include('templates.home.hero')
|
|
@include('templates.home.services-cards')
|
|
@include('templates.home.why-choose-us')
|
|
@include('templates.home.carousel')
|
|
|
|
@include('templates.home.solutions')
|
|
@include('templates.home.services-grid')
|
|
@include('templates.home.testimonials')
|
|
@include('templates.home.contact')
|
|
@endsection
|