Files
twotalesanimation 6de01c13c5 New Initial Commit
2025-12-09 12:04:54 +02:00

27 lines
831 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title', 'Additional Design')</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Noto+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('css/styles.css') }}">
@yield('styles')
</head>
<body>
@include('components.announcement-bar')
@include('components.header')
@yield('content')
@include('components.footer')
<script src="{{ asset('js/script.js') }}"></script>
@yield('scripts')
</body>
</html>