my cahnges

This commit is contained in:
shadow keeper 2024-02-19 14:45:41 +02:00
parent a2f72e652a
commit 3bec65f73d
10 changed files with 84 additions and 22 deletions

View File

@ -22,4 +22,14 @@ 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");
}
}

View File

@ -0,0 +1,6 @@
@extends('layout')
@section('content')
@include("partials.type");
@endsection

View File

@ -4,5 +4,4 @@
<p>shabbat shalom</p>
@endsection

View File

@ -3,5 +3,5 @@
@include("partials.hero");
<p>Hello World, {{ $any_name }}</p>;
@endsection

View File

@ -0,0 +1,6 @@
@extends('layout')
@section('content')
@include("partials.love");
@endsection

View File

@ -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>

View File

@ -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>

View File

@ -3,10 +3,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>

View File

@ -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>

View File

@ -16,3 +16,5 @@ use Illuminate\Support\Facades\Route;
Route::get('/', [HomeController::class, "index"]);
Route::get('/about', [HomeController::class, "about"]);
Route::get('/loveit', [HomeController::class, "loveit"]);
Route::get('/nonotype', [HomeController::class, "nonotype"]);