@extends('layouts.lookatme') @section('title', trans('message.home')) @section('content')
@include('templates.lookatme.partials.slide', [ 'data' => $sliders, 'hasNextPrev' => true, ])
@include('templates.lookatme.components.head-title', [ 'title' => 'NEW IN', 'fontStyle' => 'tw-text-xl md:tw-text-5xl', ])
@include('templates.lookatme.components.button', [ 'text' => 'Shop Now', 'class' => 'tw-text-white tw-border-white', 'link' => route('product-list.index'), ])
@include('templates.lookatme.components.head-title', [ 'title' => trans('message.the_latest'), 'fontStyle' => 'tw-text-3xl md:tw-text-5xl', ])
@include('templates.lookatme.components.product_slide', ['products' => $latestProducts])
@include('templates.lookatme.components.button', [ 'text' => 'View All', 'class' => 'tw-uppercase', 'link' => route('product-list.index'), ])
@endsection @section('script') @parent @endsection