add index, menu, css...

This commit is contained in:
s0dyy
2020-02-13 10:01:27 +01:00
parent 1c2e16cc0a
commit f0a268e4e8
7 changed files with 87 additions and 1 deletions

View File

@ -0,0 +1,9 @@
<div class="logo">
KOLIG
</div>
<div class="title">
Défendez votre clan!
</div>
<div class="description">
Créer un nouveau groupe d'amis et commencer des maintenant à parier!
</div>

View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HOME</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
</head>
<body>
<header>
@include('header')
</header>
<p>
<img src="img/app.png" weight=700px height=400px alt="">
</p>
@include('menu')
@yield('content')
</body>
</html>

View File

@ -0,0 +1,3 @@
<p>
<a href="{{ url('/contact-us') }}">Contactez-nous!</a>
</p>