@extends('front.layouts.app') @section('content')
Your future depends on today's news.

In the fast-evolving world of AI and tech, staying updated is not optional—it's critical for your future success. Stay updated with daily news 🍪 bites from FutureWalker.

Start reading now
{{-- @if ($featured_posts->count() > 0)

Featured News

@foreach ($featured_posts as $post)

{{ $post->title }}

{{ $post->published_at->diffForHumans() }} {{ markdown_min_read($post->body) }}

{{ str_first_sentence($post->bites) }}

@endforeach
@endif --}}
@if ($rss_posts->count() > 0)

🍪 Tech Bites

1-2 minute news bites worth every second
@include('front.partials.news_bites') @endif {{-- @if ($latest_posts->count() > 0)

Latest News

@foreach ($latest_posts as $post)
@foreach ($post->keywords as $keyword) @if ($keyword == $post->main_keyword)

{{ $keyword }}

@else

{{ $keyword }}

@endif @endforeach
@if ($post->category) {{ $post->category->name }} @endif {{ $post->published_at->diffForHumans() }} {{ markdown_min_read($post->body) }}
@endforeach
@endif --}}
@include('front.partials.sidebar')
@endsection