my cahnges
This commit is contained in:
parent
a2f72e652a
commit
3bec65f73d
|
@ -21,5 +21,15 @@ class HomeController extends BaseController {
|
|||
|
||||
return view("about");
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function loveit(\Illuminate\Http\Request $r) {
|
||||
|
||||
return view("loveit");
|
||||
}
|
||||
|
||||
function nonotype(\Illuminate\Http\Request $r) {
|
||||
|
||||
return view("nonotype");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
@extends('layout')
|
||||
@section('content')
|
||||
|
||||
@include("partials.type");
|
||||
|
||||
@endsection
|
|
@ -4,5 +4,4 @@
|
|||
|
||||
|
||||
|
||||
<p>shabbat shalom</p>
|
||||
@endsection
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
|
||||
@include("partials.hero");
|
||||
|
||||
<p>Hello World, {{ $any_name }}</p>;
|
||||
|
||||
@endsection
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
@extends('layout')
|
||||
@section('content')
|
||||
|
||||
@include("partials.love");
|
||||
|
||||
@endsection
|
|
@ -4,29 +4,29 @@
|
|||
<h1
|
||||
class="bg-gradient-to-r from-green-300 via-blue-500 to-purple-600 bg-clip-text text-3xl font-extrabold text-transparent sm:text-5xl"
|
||||
>
|
||||
Understand User Flow.
|
||||
Welcome to S.K Website
|
||||
|
||||
<span class="sm:block"> Increase Conversion. </span>
|
||||
<span class="sm:block"> Pen Test Specialist </span>
|
||||
</h1>
|
||||
|
||||
<p class="mx-auto mt-4 max-w-xl sm:text-xl/relaxed">
|
||||
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Nesciunt illo tenetur fuga ducimus
|
||||
numquam ea!
|
||||
hello guys, this website is an example of what i can do in PHP
|
||||
Hope you like it:)
|
||||
</p>
|
||||
|
||||
<div class="mt-8 flex flex-wrap justify-center gap-4">
|
||||
<a
|
||||
class="block w-full rounded border border-blue-600 bg-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-transparent hover:text-white focus:outline-none focus:ring active:text-opacity-75 sm:w-auto"
|
||||
href="#"
|
||||
href="/loveit"
|
||||
>
|
||||
Get Started
|
||||
Loved It!
|
||||
</a>
|
||||
|
||||
<a
|
||||
class="block w-full rounded border border-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-blue-600 focus:outline-none focus:ring active:bg-blue-500 sm:w-auto"
|
||||
href="#"
|
||||
href="/nonotype"
|
||||
>
|
||||
Learn More
|
||||
Not My Type:(
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
<section class="bg-gray-900 text-white">
|
||||
<div class="mx-auto max-w-screen-xl px-4 py-32 lg:flex lg:h-screen lg:items-center">
|
||||
<div class="mx-auto max-w-3xl text-center">
|
||||
<h1
|
||||
class="bg-gradient-to-r from-green-300 via-blue-500 to-purple-600 bg-clip-text text-3xl font-extrabold text-transparent sm:text-5xl"
|
||||
>
|
||||
WOW! Than You
|
||||
|
||||
|
||||
<div class="mt-8 flex flex-wrap justify-center gap-4">
|
||||
<a
|
||||
class="block w-full rounded border border-blue-600 bg-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-transparent hover:text-white focus:outline-none focus:ring active:text-opacity-75 sm:w-auto"
|
||||
href="/"
|
||||
>
|
||||
Go Back
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
|
@ -2,11 +2,9 @@
|
|||
<div class="mx-auto flex h-16 max-w-screen-xl items-center gap-8 px-4 sm:px-6 lg:px-8">
|
||||
<a class="block text-teal-600" href="/">
|
||||
<span class="sr-only">Home</span>
|
||||
|
||||
|
||||
|
||||
<img class="h-8 rounded-full" src="/logo.jpg" alt="logo">
|
||||
|
||||
|
||||
</a>
|
||||
|
||||
<div class="flex flex-1 items-center justify-end md:justify-between">
|
||||
|
@ -17,15 +15,11 @@
|
|||
</li>
|
||||
|
||||
<li>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Careers </a>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Resume </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> History </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Services </a>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Music </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
@ -33,7 +27,7 @@
|
|||
</li>
|
||||
|
||||
<li>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Blog </a>
|
||||
<a class="text-gray-500 transition hover:text-gray-500/75" href="#"> Contact </a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<section class="bg-gray-900 text-white">
|
||||
<div class="mx-auto max-w-screen-xl px-4 py-32 lg:flex lg:h-screen lg:items-center">
|
||||
<div class="mx-auto max-w-3xl text-center">
|
||||
<h1
|
||||
class="bg-gradient-to-r from-green-300 via-blue-500 to-purple-600 bg-clip-text text-3xl font-extrabold text-transparent sm:text-5xl"
|
||||
>
|
||||
I'm Sorry To Haer That!
|
||||
|
||||
|
||||
|
||||
<div class="mt-8 flex flex-wrap justify-center gap-4">
|
||||
<a
|
||||
class="block w-full rounded border border-blue-600 bg-blue-600 px-12 py-3 text-sm font-medium text-white hover:bg-transparent hover:text-white focus:outline-none focus:ring active:text-opacity-75 sm:w-auto"
|
||||
href="/"
|
||||
>
|
||||
Go Back
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
|
@ -15,4 +15,6 @@ use Illuminate\Support\Facades\Route;
|
|||
*/
|
||||
|
||||
Route::get('/', [HomeController::class, "index"]);
|
||||
Route::get('/about', [HomeController::class, "about"]);
|
||||
Route::get('/about', [HomeController::class, "about"]);
|
||||
Route::get('/loveit', [HomeController::class, "loveit"]);
|
||||
Route::get('/nonotype', [HomeController::class, "nonotype"]);
|
Loading…
Reference in New Issue