{{-- resources/views/pages/home.blade.php WikiPāli 首页:品牌 hero + 四张通栏分流卡片。 卡片数据全部来自 PageIndexController 传入的 $cards,模板不硬编码栏目文案。 --}} @extends('layouts.base') @section('title', __('home.title')) @push('styles') @vite(['resources/css/home.css']) @endpush @section('body-class', 'home-page') @section('page')
{{-- 右上角语言选择,复用 library 的切换组件 --}}
{{-- 品牌 Hero:站名 + 一行说明,居中 --}}

{{ __('home.hero_title') }}

{{ __('home.hero_lead') }}

{{-- 四张通栏卡片,纵向排列 --}} @foreach ($cards as $card) @endforeach
@endsection