diff --git a/.gitignore b/.gitignore index 0f7df0f..e1fd332 100755 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ /public/storage /storage/*.key /vendor +.storage +env .env .env.backup .phpunit.result.cache diff --git a/public/css/style.css b/public/css/style.css new file mode 100644 index 0000000..01204cf --- /dev/null +++ b/public/css/style.css @@ -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; +} diff --git a/public/img/app.png b/public/img/app.png new file mode 100644 index 0000000..5926aaf Binary files /dev/null and b/public/img/app.png differ diff --git a/resources/views/header.blade.php b/resources/views/header.blade.php new file mode 100644 index 0000000..757f4f7 --- /dev/null +++ b/resources/views/header.blade.php @@ -0,0 +1,9 @@ + +
+ Défendez votre clan! +
+
+ Créer un nouveau groupe d'amis et commencer des maintenant à parier! +
diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php new file mode 100644 index 0000000..3a9b2ea --- /dev/null +++ b/resources/views/index.blade.php @@ -0,0 +1,28 @@ + + + + + + + HOME + + + + + + + +
+ @include('header') +
+ +

+ +

+ + @include('menu') + + @yield('content') + + + diff --git a/resources/views/menu.blade.php b/resources/views/menu.blade.php new file mode 100644 index 0000000..3a52892 --- /dev/null +++ b/resources/views/menu.blade.php @@ -0,0 +1,3 @@ +

+Contactez-nous! +

diff --git a/routes/web.php b/routes/web.php index 7c74b39..d4e17a1 100755 --- a/routes/web.php +++ b/routes/web.php @@ -12,7 +12,7 @@ */ Route::get('/', function () { - return view('welcome'); + return view('index'); }); Route::get('contact-us', 'ContactUSController@contactUS');