@extends('layouts.guest-landing') {{-- Use the simple public layout --}} @section('title', 'Welcome to Mindful Giving') @section('content') {{-- Use a container for overall padding and max-width --}}
{{-- Two-column grid layout --}}
{{-- Increased gap --}} {{-- Left Column: Text Content --}}

Welcome to OneEach
Mindful Giving

Join us in our mission to make a positive impact on the world through our donation drive. Your contribution can make a significant difference in the lives of those who are in need. Your donation can provide food, shelter, education, and medical care to people who are struggling.

{{-- Removed CTA Buttons --}}
{{-- Right Column: Campaign Cards Grid --}}
{{-- Ensure controller passes $campaigns->take(4) --}} @forelse ($campaigns->take(4) as $campaign) {{-- Campaign Card --}} {{-- Card has white background always, dark text --}} {{-- Adjusted min-height --}} {{-- Removed Overlay Icon Image Logic --}}
{{-- Container for top content --}}

{{ $campaign->title }}

@if ($campaign->description)

{{ $campaign->description }}

@endif
{{-- View Wishlist Link (Bottom) --}}
View wishlist {{-- SVG Arrow Icon --}}
@empty

No featured campaigns to display currently.

@endforelse
{{-- End Inner Grid --}}
{{-- End Outer Grid --}}
{{-- End Container --}} {{-- Other Landing Page Sections --}} {{-- ... --}} @endsection