Files
nhgooi.nl/resources/views/app.blade.php
T
Mischa Spelt 7b9674110e feat: Add npm dependencies and update vendor paths
- Add package.json dependencies: jquery, jquery-ui, moment, daterangepicker, wavesurfer.js, air-datepicker
- Create scripts/setup-vendor.js to copy npm packages to public/assets/vendor
- Update view templates to use vendor paths instead of old /js/ or CDN URLs
- Clean up legacy commented-out scripts in master layout
2026-08-25 16:17:01 +02:00

45 lines
1.4 KiB
PHP

@extends('layouts/full')
@section('title')
NH Gooi App
@endsection
@section('breadcrumb')
<ul class="bread_crumb">
<li><a title="Home" href="/">Home</a></li>
<li class="separator"><i class="fa-solid fa-chevron-right"></i></li>
<li>NH Gooi App</li>
</ul>
@endsection
@section('page_class')
page_container
@endsection
@section('content')
<div class="page_body margin_bottom">
<p>Download de NH Gooi app via de App Store of Google Play.</p>
<div class="row">
<div class="col" style="margin-left: 0">
<div class="icon_box icon_position_top no_border">
<a class="" href="https://play.google.com/store/apps/details?id=nl.gooi.app">
<img data-src="/images/googleplay.jpg" class="scale-with-grid" alt="Google Play Store"
width="318" height="100" src="/images/googleplay.jpg">
</a>
</div>
</div>
<div class="col" style="margin-left: 0">
<div class="icon_box icon_position_top no_border">
<a class="" href="https://apps.apple.com/nl/app/nh-gooi/id1585667560">
<img class="scale-with-grid" alt="Apple Store" width="318" height="100" src="/images/apple.jpg">
</a>
</div>
</div>
</div>
</div>
@endsection