@extends('layouts.main') @section('title', 'Linkie.dev - Technical Blog & Product Showcase') @section('content') {{-- Hero Section: Full width, centered content, bold typography --}}
{{-- Main Title: Extra large, bold, accent color --}}

Welcome to Linkie.dev

{{-- Subtitle: Medium size, lighter weight, centered --}}

Your destination for technical tutorials, product reviews, and premium tools. Learn, explore, and build amazing things.

{{-- CTA Buttons: Flex layout, responsive spacing --}}
{{-- Primary CTA: Accent background, white text --}} Start Learning {{-- Secondary CTA: Outlined, accent border --}} Explore Tools
{{-- Latest Blog Posts Section: Dark background, grid layout --}}
{{-- Section Header: Title and view all link --}}

Latest Blog Posts

View All →
{{-- Posts Grid: Responsive grid, 3 columns on desktop, 1 on mobile --}} @if($latestPosts->count() > 0)
@foreach($latestPosts as $post) @endforeach
@else {{-- Empty State: Centered message --}}

No blog posts yet. Check back soon!

@endif
{{-- Featured Products Section: Dark background, grid layout --}}
{{-- Section Header: Title and view all link --}}

Featured Products

View All →
{{-- Products Grid: Responsive grid, 3 columns on desktop, 1 on mobile --}} @if($featuredProducts->count() > 0)
@foreach($featuredProducts as $product) @endforeach
@else {{-- Empty State: Centered message --}}

No products yet. Check back soon!

@endif
{{-- About Snippet Section: Brief intro, CTA to full about page --}}

About Linkie.dev

We're passionate about technology and helping developers build amazing things. From in-depth tutorials to premium tools and templates, we've got you covered.

Learn More
@endsection