@extends('layouts.app') @section('content')

发现更好的 AI 工具

精选产品与文章,覆盖写作、设计、开发、效率等场景。

热门推荐

@forelse($featuredProducts as $product) @include('partials.product-card', ['product' => $product]) @empty
暂无推荐内容
@endforelse

新加产品

@forelse($newProducts as $product) @include('partials.product-card', ['product' => $product]) @empty
暂无新产品
@endforelse

分类精选

@foreach($categories as $category)

{{ $category->name }}

更多
@foreach($category->products as $product) @include('partials.product-card', ['product' => $product]) @endforeach
@endforeach
@endsection