diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 9406bd9..c7bb0a8 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -13,6 +13,7 @@ p{ line-height: 1.8rem; letter-spacing: 0.001em; color: #221415; + margin-bottom: 0; } a, button{ transition: all 300ms ease-out; @@ -770,13 +771,13 @@ Responsive Codes padding: 3rem 6rem; background: #F8F8F8; } -.who-we-desc hr, .obj-header hr{ +.who-we-desc hr, .obj-header hr, .hiring-content hr{ width: 38px; height: 0px; opacity: 1; border: 1px solid #F54C5F; } -.who-we-desc h5, .obj-header h5{ +.who-we-desc h5, .obj-header h5, .hiring-content h5{ font-weight: 500; font-size: 16px; line-height: 24px; @@ -785,7 +786,7 @@ Responsive Codes align-items: center; gap: 10px; } -.who-we-desc h3, .obj-header h3{ +.who-we-desc h3, .obj-header h3, .hiring-content h3{ font-weight: 700; font-size: 38px; line-height: 57px; @@ -799,12 +800,13 @@ Responsive Codes gap: 20px; } .about-banner-section .breadcrumb, -.contact-us-section .breadcrumb{ +.contact-us-section .breadcrumb, +.need-chef-banner .breadcrumb{ float: right; - margin-top: 15px; } .about-banner-section .breadcrumb a, -.contact-us-section .breadcrumb a{ +.contact-us-section .breadcrumb a, +.need-chef-banner .breadcrumb a{ text-decoration: none; color: #FFFFFF; } @@ -871,7 +873,7 @@ Responsive Codes z-index: 2; margin: 0 10px; } -.contact-form h2{ +.contact-form h2, .chef-hire-form h2{ font-weight: 500; font-size: 22px; line-height: 178%; @@ -889,22 +891,29 @@ Responsive Codes line-height: 21px; color: #FFFFFF; } +.chef-hire-form input:focus, +.chef-hire-form select:focus, +.chef-hire-form textarea:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{ box-shadow: none; } -.contact-form label{ +.contact-form label, +.chef-hire-form label{ font-weight: 400; font-size: 15px; line-height: 1.8rem; color: #0A2849; } +.chef-hire-form .form-control, .contact-form .form-control, .contact-form select{ border: none; padding: 0.6rem; } +.chef-hire-form input::-webkit-input-placeholder, +.chef-hire-form textarea::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder, .contact-form select, .contact-form input::-webkit-input-placeholder{ @@ -919,4 +928,96 @@ Responsive Codes .map-section{ padding-top: 3rem; background: #F5F5F5; +} +/* need a chef page css */ +.need-chef-banner{ + background: url('../images/need-chef.png'); + padding: 6rem; + height: 40vh; + background-repeat: no-repeat; + background-size: cover!important; +} +.chef-banner-content h2{ + font-weight: 700; + font-size: 80px; + line-height: 3rem; + color: #FFFFFF; + text-align: center; + margin-top: 4rem; + margin-bottom: 25px; + text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25); +} +.chef-banner-content p{ + font-weight: 500; + font-size: 16px; + line-height: 1.8rem; + text-align: center; + color: #FFFFFF; +} +.hiring-chef{ + padding: 3rem 10rem; + background: #FAFAFE; +} +.hiring-content{ + margin-right: 20px; +} +.hiring-content p{ + font-weight: 500; + font-size: 16px; + line-height: 1.8rem; + color: #4E5F72; + margin-bottom: 20px; +} +.hiring-chef h6{ + font-weight: 600; + font-size: 16px; + line-height: 1.8rem; + color: #071C39; +} +.hiring-chef ul{ + padding-left: 1rem; +} +.hiring-chef ul li::marker{ + color: #01070F; +} +.hiring-chef ul li{ + font-weight: 400; + font-size: 16px; + line-height: 1.8rem; + color: #071C39; +} +.chef-hire-form{ + background: #F0F4F9; + box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.25); + border-radius: 12px; + padding: 40px; +} +.chef-hire-form button{ + background: #F54C5F; + border-radius: 5px; + border: none; + width: 100%; + padding: 20px; + font-weight: 500; + font-size: 14px; + line-height: 21px; + text-align: center; + color: #FFFFFF; +} +.hiring-chef .row{ + display: flex; + align-items: center; +} +.chef-hire-form .input-group-text{ + padding: .9rem .75rem !important; +} +.captch-field{ + background: #FFFFFF; + padding: 0.5rem; + display: flex; + gap: 20px; +} +.captch-field p{ + font-weight: 400; + font-size: 13px; } \ No newline at end of file diff --git a/public/frontend/icons/clarity_refresh-line.svg b/public/frontend/icons/clarity_refresh-line.svg new file mode 100644 index 0000000..ae90580 --- /dev/null +++ b/public/frontend/icons/clarity_refresh-line.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/frontend/icons/reset-icon.svg b/public/frontend/icons/reset-icon.svg new file mode 100644 index 0000000..0fedaf0 --- /dev/null +++ b/public/frontend/icons/reset-icon.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/frontend/images/need-chef.png b/public/frontend/images/need-chef.png new file mode 100644 index 0000000..33beb0c Binary files /dev/null and b/public/frontend/images/need-chef.png differ diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index b8f0f29..fb437a4 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -115,7 +115,7 @@

Recruitment

diff --git a/resources/views/need_chef.blade.php b/resources/views/need_chef.blade.php new file mode 100644 index 0000000..395a454 --- /dev/null +++ b/resources/views/need_chef.blade.php @@ -0,0 +1,80 @@ +@extends('layout.app') +@section('title') + I need a Chef +@endsection +@section('content') +
+ +
+

I need a Chef

+

Are you struggling to find chefs? Aplus has placed over 600 chefs in hospitality venues across Australia

+
+
+
+
+
+
+
Hiring
+

Need a Chef or Cook?

+

Let us know via our enquiry form.

+
What are the next steps?
+
    +
  • Initial consultation to assess your needs, timelines and eligibility.
  • +
  • If required, we will set you up as a Standard Business Sponsor.
  • +
  • Candidate profiles are sent to you and you make your selections for the Skype/Zoom interviews.
  • +
  • Candidates are selected and the Contract of Employment is drafted.
  • +
  • We apply for the candidate’s visa which takes normally 3-4 months to come through.
  • +
  • The candidate resigns from their current post and makes plans to arrive in Australia.
  • +
  • Follow-ups with both the candidate and yourself to ensure everything is running smoothly.
  • +
  • Payment of recruitment fee after 14 days.
  • +
+
+
+
+
+
+

Please fill-up the form

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+ +
+
+

g46x0

+ +
+
+
+ +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 17b3907..2526367 100644 --- a/routes/web.php +++ b/routes/web.php @@ -48,6 +48,9 @@ Route::get('/about', function () { }); Route::get('/refreshcaptcha', [HomeController::class,'refreshCaptcha']); +Route::get('/need_chef', function(){ + return view('need_chef'); +}); Route::get('/contact', [HomeController::class, 'contact']);