mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
Improving welcome page
This commit is contained in:
parent
e8c6717fe1
commit
e57b5e7206
@ -59,8 +59,19 @@
|
||||
}
|
||||
|
||||
.m-b-md {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
font-size: 11px;
|
||||
padding-top: 30%;
|
||||
}
|
||||
|
||||
.footer > a{
|
||||
font-size: 10px;
|
||||
text-transform: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@ -80,15 +91,20 @@
|
||||
<div class="title m-b-md">
|
||||
Share It!
|
||||
</div>
|
||||
<div>Hello, {{$name}}!</div>
|
||||
|
||||
<div class="links">
|
||||
<a href="https://laravel.com/docs">Documentation</a>
|
||||
<a href="https://laracasts.com">Laracasts</a>
|
||||
<a href="https://laravel-news.com">News</a>
|
||||
<a href="https://nova.laravel.com">Nova</a>
|
||||
<a href="https://forge.laravel.com">Forge</a>
|
||||
<a href="https://github.com/laravel/laravel">GitHub</a>
|
||||
<a href="/login">Login</a>
|
||||
<a href="/register">Register</a>
|
||||
<a href="/help">Help</a>
|
||||
|
||||
<!--<a href="https://github.com/laravel/laravel">GitHub</a>-->
|
||||
</div>
|
||||
<div>
|
||||
<br>
|
||||
</div>
|
||||
<div class="links footer">
|
||||
<a href="https://brunofontes.net">By Bruno Fontes</a>
|
||||
<p>© 2018 Bruno Fontes All Rights Reserved</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -12,8 +12,7 @@
|
||||
*/
|
||||
|
||||
Route::get('/', function () {
|
||||
$name = 'Bruno';
|
||||
return view('welcome', compact('name'));
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
Route::get('/product', 'ProductController@index');
|
||||
|
Loading…
Reference in New Issue
Block a user