mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-22 19:02:11 +00:00
add index, menu, css...
This commit is contained in:
parent
1c2e16cc0a
commit
f0a268e4e8
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,6 +3,8 @@
|
|||||||
/public/storage
|
/public/storage
|
||||||
/storage/*.key
|
/storage/*.key
|
||||||
/vendor
|
/vendor
|
||||||
|
.storage
|
||||||
|
env
|
||||||
.env
|
.env
|
||||||
.env.backup
|
.env.backup
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
|
44
public/css/style.css
vendored
Normal file
44
public/css/style.css
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
header {
|
||||||
|
font-family: 'Poppins', sans-serif;
|
||||||
|
font-weight: 900;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-size: 80px;
|
||||||
|
color: #FF0448;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 40px;
|
||||||
|
color: #636b6f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #B1B0B7;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #E7E7E7;
|
||||||
|
font-family: 'Poppins', sans-serif;
|
||||||
|
font-weight: 200;
|
||||||
|
color: #B1B0B7;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link, a:visited {
|
||||||
|
font-weight: 700;
|
||||||
|
background-color: #92F2DC;
|
||||||
|
color: white;
|
||||||
|
padding: 14px 25px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover, a:active {
|
||||||
|
background-color: #9DFFB3;
|
||||||
|
}
|
BIN
public/img/app.png
Normal file
BIN
public/img/app.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 203 KiB |
9
resources/views/header.blade.php
Normal file
9
resources/views/header.blade.php
Normal 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>
|
28
resources/views/index.blade.php
Normal file
28
resources/views/index.blade.php
Normal 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>
|
3
resources/views/menu.blade.php
Normal file
3
resources/views/menu.blade.php
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<p>
|
||||||
|
<a href="{{ url('/contact-us') }}">Contactez-nous!</a>
|
||||||
|
</p>
|
@ -12,7 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
Route::get('/', function () {
|
Route::get('/', function () {
|
||||||
return view('welcome');
|
return view('index');
|
||||||
});
|
});
|
||||||
|
|
||||||
Route::get('contact-us', 'ContactUSController@contactUS');
|
Route::get('contact-us', 'ContactUSController@contactUS');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user