This commit is contained in:
toom1996
2025-07-04 09:49:52 +08:00
parent bcf7b3a25a
commit d723be397f
7 changed files with 76 additions and 19 deletions

View File

@ -4,13 +4,12 @@ import Layout from "../../../layouts/Layout_2.astro";
import ImageXiazai from '../../../../public/template_2/xiazai.svg';
import { Image } from 'astro:assets';
import { getConfig, getExtra } from "../../../../utils/config";
import { TP2_COLUMN_ABOUT_US, TP2_COLUMN_INDEX, TP2_COLUMN_INDEX_URL } from "../../../../utils/const";
const config = getConfig(Astro)
const extra = getExtra('')
// swiper 数据
const swiper = extra.index.sc3.swiper;
const extra = getExtra(config.app_extra_tag)
const breadcrumb = [{
title: '主页',
url: '/'
title: TP2_COLUMN_INDEX,
url: TP2_COLUMN_INDEX_URL
}]
---