Files
website/resources/views/changelog.blade.php

94 lines
3.8 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Monitor</title>
<meta name="description" content="PHP Monitor: Lightweight, native Mac menu bar app that interacts with Laravel Valet. Helps you manage multiple PHP installations, locate config files and more.">
{{-- Web Fonts --}}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
{{-- Vite --}}
@vite('resources/css/app.css')
{{-- OG --}}
<meta property="og:title" content="PHP Monitor: Lightweight, native Mac menu bar app that interacts with Laravel Valet. Helps you manage multiple PHP installations, locate config files and more.">
<meta property="og:image" content="{{ url('/images/phpmon-social.png') }}">
{{-- Favicons --}}
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
{{-- Umami --}}
<script defer src="https://umami.nicoverbruggen.be/script.js" data-website-id="a94ced9c-2bdd-4a02-9c52-f1b8d34aba89"></script>
</head>
<body class="font-sans antialiased">
<div>
<div class="bg-dim flex">
<header class="flex flex-col m-auto max-w-xl py-5 md:py-8 lg:py-10 p-4">
<div class="flex">
<x-logo size="95"></x-logo>
<h1 class="text-xl font-bold mb-2 text-white mt-3">
<span class="text-black text-3xl">PHP Monitor</span><br/>
<span class="text-primary text-3xl">Early Access</span>
</h1>
</div>
</header>
</div>
<div class="px-4">
<style>
.infobox {
border-radius: 5px;
}
h1 {
font-size: 26px;
font-weight: bold;
}
h3 {
font-size: 18px;
font-weight: bold;
margin: 32px 0 20px 0;
}
ul {
list-style: square;
line-height: 160%;
margin-left: 20px;
}
ul li {
margin-bottom: 10px;
}
a {
text-decoration: underline;
color: #4894FC;
}
p.warning {
margin-top: 15px;
background-color: #ffffd0;
padding: 25px;
line-height: 160%;
}
p.warning::before {
content: "";
}
code {
background-color: #ebf9ff;
border: 1px solid #bed9ef;
border-radius: 3px;
padding: 2px 5px;
font-size: 14px;
}
</style>
<div class="flex flex-col m-auto max-w-3xl py-4 md:py-10">
<div class="p-4 mb-8 bg-yellow-100 py-4 infobox shadow-sm">
<p>This is the changelog for the early access builds of PHP Monitor. You can gain access to these builds by <a href="https://github.com/sponsors/nicoverbruggen" target="_blank">sponsoring the project</a> on a monthly basis on GitHub for as low as $5 per month.</p>
<p class="text-sm mt-2 text-gray-500">You also get early access to a private repository, and I will prioritize issues opened by you if you are sponsor.</p>
</div>
<h1>Changelog</h1>
{!! $content !!}
</div>
</div>
</div>
</body>
</html>