Added trending page

This commit is contained in:
Pablo Ferreiro 2022-01-02 00:42:03 +01:00
parent e9b194217a
commit 51e27db867
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
7 changed files with 128 additions and 63 deletions

21
views/trending.blade.php Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Trending - TikTok</title>
<link rel="stylesheet" href="https://unpkg.com/bulmaswatch/superhero/bulmaswatch.min.css">
<link rel="stylesheet" href="../styles/feed.css">
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<p class="title">Trending page</p>
</div>
</div>
</section>
@include('feed')
</body>
</html>