@php
$worlds = [
[
'title' => 'iOS & Mac Apps', 'desc' => '22 Apps im App Store für iPhone, iPad und Mac — regelmäßig aktualisiert.',
'chip' => '22 Apps', 'url' => 'https://ios.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'ios',
],
[
'title' => 'Web-Tools', 'desc' => '734 Tools direkt im Browser — ohne Login, ohne Installation.',
'chip' => '734 Tools', 'url' => 'https://webtools.kotsch.tech', 'span' => 'span 6', 'accent' => 'blue', 'svg' => 'webtools',
],
[
'title' => 'Windows', 'desc' => '9 Programme: Cleaner, Commander, Notes, Taskmanager, CodeEditor — Direkt-Download.',
'chip' => '9 Programme', 'url' => 'https://windows.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'windows',
],
[
'title' => 'News', 'desc' => '1.412 Ratgeber & Tutorials rund um Software, Apps und IT.',
'chip' => '1.412 Artikel', 'url' => 'https://news.kotsch.tech', 'span' => 'span 6', 'accent' => '', 'svg' => 'news',
],
[
'title' => 'Android', 'desc' => 'Native Apps für Android — derzeit in Entwicklung.',
'chip' => 'In Entwicklung', 'url' => 'https://android.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'android',
],
[
'title' => 'Shop', 'desc' => 'Digitale Produkte mit Sofort-Download — direkt nach dem Kauf.',
'chip' => 'Sofort-Download', 'url' => 'https://shop.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'shop',
],
[
'title' => 'Hosting', 'desc' => 'Managed Webhosting und vServer / VPS — DSGVO-konform.',
'chip' => 'DSGVO-konform', 'url' => 'https://hosting.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'hosting',
],
[
'title' => 'IT-Hilfe', 'desc' => 'Vor Ort & Remote in der Region Glauchau–Lichtenstein.',
'chip' => 'Keine Lösung = kein Preis', 'url' => 'https://it-hilfe.kotsch.tech', 'span' => 'span 4', 'accent' => 'orange', 'svg' => 'ithilfe',
],
[
'title' => 'Webdesign', 'desc' => 'Studio für individuelle Websites — mit 20 Branchen-Demos.',
'chip' => '20 Branchen-Demos', 'url' => 'https://webdesign.kotsch.tech', 'span' => 'span 4', 'accent' => '', 'svg' => 'webdesign',
],
];
@endphp
@foreach($worlds as $i => $w)
@switch($w['svg'])
@case('ios')
@break
@case('windows')
@break
@case('android')
@break
@case('webtools')
@break
@case('shop')
@break
@case('hosting')
@break
@case('news')
@break
@case('ithilfe')
@break
@case('webdesign')
@break
@endswitch
{!! $w['title'] !!}
{!! $w['desc'] !!}
@endforeach