first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
@extends('common::prerender.base')
@section('head')
@include('seo.landing-page.seo-tags')
@endsection
@section('body')
@if ($data = settings('homepage.appearance'))
<h1>{{ $data['headerTitle'] }}</h1>
<p>{{ $data['headerSubtitle'] }}</p>
@foreach ($data['actions'] as $action)
@if (isset($action['action']))
<a href="{{ $action['action'] }}">{{ $action['label'] }}</a>
@endif
@endforeach
@if (isset($data['primaryFeatures']))
<ul>
@foreach ($data['primaryFeatures'] as $primaryFeature)
<li>
<h2>{{ $primaryFeature['title'] }}</h2>
<p>{{ $primaryFeature['subtitle'] }}</p>
</li>
@endforeach
</ul>
@endif
@if (isset($data['secondaryFeatures']))
<ul>
@foreach ($data['secondaryFeatures'] as $secondaryFeature)
<li>
<h3>{{ $secondaryFeature['title'] }}</h3>
@if (isset($secondaryFeature['subtitle']))
<small>{{ $secondaryFeature['subtitle'] }}</small>
@endif
<p>{{ $secondaryFeature['description'] }}</p>
</li>
@endforeach
</ul>
@endif
@if (isset($data['footerTitle']))
<footer>
<div>{{ $data['footerTitle'] }}</div>
<p>{{ $data['footerSubtitle'] }}</p>
</footer>
@endif
@endif
@endsection

View File

@@ -0,0 +1,25 @@
<meta property="og:site_name" content="{{ settings('branding.site_name') }}" />
<meta property="twitter:card" content="summary" />
<meta property="og:type" content="website" />
<title>
{{ settings('branding.site_name') }} - Movies, TV and Celebrities
</title>
<meta
property="og:title"
content="{{ settings('branding.site_name') }} - Movies, TV and Celebrities"
/>
<meta property="og:url" content="{{ urls()->home() }}" />
<link rel="canonical" href="{{ urls()->home() }}" />
<meta
property="og:description"
content="The Movie Database ({{ settings('branding.site_name') }}) is a popular database for movies, TV shows and celebrities."
/>
<meta
name="description"
content="The Movie Database ({{ settings('branding.site_name') }}) is a popular database for movies, TV shows and celebrities."
/>
<meta
property="keywords"
content="movies, films, movie database, actors, actresses, directors, stars, synopsis, trailers, credits, cast"
/>