diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 900d22d..0cd1b2c 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -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"); + } } diff --git a/resources/views/ nonotype.blade.php b/resources/views/ nonotype.blade.php new file mode 100644 index 0000000..724b778 --- /dev/null +++ b/resources/views/ nonotype.blade.php @@ -0,0 +1,6 @@ +@extends('layout') +@section('content') + + @include("partials.type"); + +@endsection \ No newline at end of file diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php index d3ebbd3..3a06579 100644 --- a/resources/views/about.blade.php +++ b/resources/views/about.blade.php @@ -4,5 +4,4 @@ -

shabbat shalom

@endsection diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php index 5f073fd..dd6a3e0 100644 --- a/resources/views/home.blade.php +++ b/resources/views/home.blade.php @@ -3,5 +3,5 @@ @include("partials.hero"); -

Hello World, {{ $any_name }}

; + @endsection diff --git a/resources/views/loveit.blade.php b/resources/views/loveit.blade.php new file mode 100644 index 0000000..be3c543 --- /dev/null +++ b/resources/views/loveit.blade.php @@ -0,0 +1,6 @@ +@extends('layout') +@section('content') + + @include("partials.love"); + +@endsection diff --git a/resources/views/partials/hero.blade.php b/resources/views/partials/hero.blade.php index c692691..6041986 100644 --- a/resources/views/partials/hero.blade.php +++ b/resources/views/partials/hero.blade.php @@ -4,29 +4,29 @@

- Understand User Flow. + Welcome to S.K Website - Increase Conversion. + Pen Test Specialist

- 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:)

- Get Started + Loved It! - Learn More + Not My Type:(
diff --git a/resources/views/partials/love.blade.php b/resources/views/partials/love.blade.php new file mode 100644 index 0000000..1e59fe2 --- /dev/null +++ b/resources/views/partials/love.blade.php @@ -0,0 +1,22 @@ +
+
+
+

+ WOW! Than You + + + +

+
+
\ No newline at end of file diff --git a/resources/views/partials/navbar.blade.php b/resources/views/partials/navbar.blade.php index 6efda11..1236502 100644 --- a/resources/views/partials/navbar.blade.php +++ b/resources/views/partials/navbar.blade.php @@ -2,11 +2,9 @@
Home - - + logo -
@@ -17,15 +15,11 @@
  • - Careers + Resume
  • - History -
  • - -
  • - Services + Music
  • @@ -33,7 +27,7 @@
  • - Blog + Contact
  • diff --git a/resources/views/partials/type.blade.php b/resources/views/partials/type.blade.php new file mode 100644 index 0000000..46a07b2 --- /dev/null +++ b/resources/views/partials/type.blade.php @@ -0,0 +1,23 @@ +
    +
    +
    +

    + I'm Sorry To Haer That! + + + + +

    +
    +
    \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index af32153..897985f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -15,4 +15,6 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', [HomeController::class, "index"]); -Route::get('/about', [HomeController::class, "about"]); \ No newline at end of file +Route::get('/about', [HomeController::class, "about"]); +Route::get('/loveit', [HomeController::class, "loveit"]); +Route::get('/nonotype', [HomeController::class, "nonotype"]); \ No newline at end of file