-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (30 loc) · 1.2 KB
/
404.php
File metadata and controls
35 lines (30 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./client/css/fonts.css">
<title>404</title>
<?php include_once './client/css/index.php'; ?>
</head>
<body>
<!--
This example requires updating your template:
```
<html class="h-full">
<body class="h-full">
```
-->
<main class="relative isolate h-screen w-screen">
<img src="https://i.pinimg.com/originals/79/df/1c/79df1cea7f72a4295d37e086e03a3674.gif" alt="" class="absolute inset-0 -z-10 h-full w-full object-cover object-top">
<div class="mx-auto max-w-7xl px-6 py-32 text-center sm:py-40 lg:px-8">
<p class="text-base font-semibold leading-8 text-white">404</p>
<h1 class="mt-4 text-3xl font-bold tracking-tight text-white sm:text-5xl">Essa página não existe :(</h1>
<p class="mt-4 text-base text-white/70 sm:mt-6">Desculpe, parece que não tem nada pra você aqui, flor.</p>
<div class="mt-10 flex justify-center">
<a href="./feed.php" class="text-sm font-semibold leading-7 text-white"><span aria-hidden="true">←</span> Cai fora</a>
</div>
</div>
</main>
</body>
</html>