OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)

This commit is contained in:
wangruiguo
2026-09-03 18:49:20 +08:00
commit d647428529
3501 changed files with 1988906 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<div class="center padding-lg" style="max-width:1200px;">
<div class="row">
<div class="col-md-12">
<h1 style="font-size:var(--font-size-xxxl);">Create something new</h1><br />
{!! __("text.creation_hub") !!}
<br />
<br />
</div>
</div>
<div class="row">
@foreach($projectTypes as $projectType)
<div class="col-md-4 {{ $projectType["active"] !== true ? "disabled" : "" }}" >
<div class="profileBox">
<x-global::undrawSvg image="{{ $projectType['image'] }}" headline="{{ __($projectType['label']) }}" maxWidth="50%" height="150px"></x-global::undrawSvg>
<br />
{!! __($projectType["description"]) !!}
<br /><br />
@if($projectType["active"] == true )
<x-global::forms.button tag="a" link="{{ BASE_URL }}/{{ $projectType['url'] }}" contentRole="primary">{{ __($projectType['btnLabel']) }}</x-global::forms.button>
@else
<x-global::forms.button tag="a" link="#" contentRole="primary" class="disabled">Not Available in this plan</x-global::forms.button>
@endif
<div class="clearall"></div>
</div>
</div>
@endforeach
</div>
</div>