[add] new page recruitment

aplus#17
tribikram 2 years ago committed by Mahesh Sharma
parent 9cf20e3473
commit 3e9c93f076
  1. 77
      public/frontend/css/style.css
  2. BIN
      public/frontend/images/chefs.png
  3. BIN
      public/frontend/images/recruitment.png
  4. BIN
      public/frontend/images/women-chef.png
  5. 2
      resources/views/layout/app.blade.php
  6. 57
      resources/views/recruitment.blade.php
  7. 4
      routes/web.php

@ -92,7 +92,8 @@ h4{
display: flex; display: flex;
gap: 10px; gap: 10px;
} }
.nav-socials a{ .nav-socials a,
.recruitment-card a{
text-decoration: none; text-decoration: none;
} }
@ -1390,6 +1391,76 @@ Responsive Codes
.service-last-img{ .service-last-img{
margin-left: 25px; margin-left: 25px;
} }
/* recruitment page css */
.recruitment-banner{
background: url(../images/recruitment.png);
padding: 6rem;
height: 40vh;
background-repeat: no-repeat;
background-size: cover !important;
position: relative;
}
.recruitment-primary,
.recruitment-card{
padding: 3rem 6rem;
}
.recruitment-primary h2{
font-weight: 600;
font-size: 38px;
line-height: 57px;
text-align: center;
color: #082548;
}
.recruitment-primary h2 span{
color: #F54C5F
}
.recruitment-primary p{
font-weight: 400;
font-size: 16px;
line-height: 1.8rem;
text-align: center;
padding: 0 20%;
color: #252525;
}
.need-chef-card h4{
font-weight: 700;
font-size: 32px;
line-height: 2.6rem;
text-align: center;
color: #0A2849;
margin-bottom: 20px;
}
.need-chef-card h6{
color: #252525;
text-align: center;
margin-bottom: 20px;
}
.need-chef-card p{
text-align: center;
margin-bottom: 20px;
}
.need-chef-card{
display: flex;
flex-direction: column;
justify-content: space-between;
background: #F3F3F3;
border-radius: 15px;
min-height: 46pc;
}
.need-chef-card:hover{
background: #104682;
}
.need-chef-card:hover p,
.need-chef-card:hover h4,
.need-chef-card:hover h6{
color: #FFFFFF;
}
.need-chef-top{
padding: 30px;
}
@media only screen and (min-width: 320px) and (max-width: 480px) { @media only screen and (min-width: 320px) and (max-width: 480px) {
/* contact us mobile view */ /* contact us mobile view */
.about-banner-section .breadcrumb, .about-banner-section .breadcrumb,
@ -1452,7 +1523,9 @@ Responsive Codes
.clients-section, .clients-section,
.quick-enquiry-setion, .quick-enquiry-setion,
.service-secondary, .service-secondary,
.service-view-last{ .service-view-last,
.recruitment-primary,
.recruitment-card{
padding: 2rem; padding: 2rem;
} }
.visa-services, .visa-services,

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

@ -57,7 +57,7 @@
</ul> </ul>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/need_chef')}}">Recruitment</a> <a class="nav-link" href="{{url('/recruitment')}}">Recruitment</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="{{url('/insurance')}}">Insurance</a> <a class="nav-link" href="{{url('/insurance')}}">Insurance</a>

@ -0,0 +1,57 @@
@extends('layout.app')
@section('title')
<title>Recruitment</title>
@endsection
@section('content')
<section class="recruitment-banner">
<div class="service-detail-desc">
<h2>Recruitment</h2>
</div>
</section>
<section class="recruitment-primary">
<h2>We offer <span>solution</span> to your need</h2>
<p>We help businesses and enterprises to leverage the valuable skills of our custom dedicated team to help match your project needs on various technology in development</p>
</section>
<section class="recruitment-card">
<div class="row g-4">
<div class="col-md-6">
<a href="/need_chef">
<div class="need-chef-card">
<div class="need-chef-top">
<h4>I need a Chef</h4>
<h6>Connecting People and Businesses</h6>
<p>A Plus Agency is an education and recruitment firm specializing in the hospitality industry, focusing on business-to-business relationships and international chef placements.
<br><br>
Need help finding the best chef for your business? Whatever you need, we will help to find the right talent!
<br><br>
Please get in touch via our enquiry form. We would love to find out how we can help you!
</p>
</div>
<div class="need-chef-card-img text-center">
<img src="{{url('frontend/images/women-chef.png')}}" class="img-fluid" alt="">
</div>
</div>
</a>
</div>
<div class="col-md-6">
<a href="/need_chef">
<div class="need-chef-card">
<div class="need-chef-top">
<h4>I am Chef</h4>
<h6>We help you Grow, Choose a Job you Love</h6>
<p>A Plus Agency gives hospitality workers like you the ultimate freedom & choice, supports you throughout your employment and provides protection.
<br><br>
If you want to work in Australia as a Chef or a Cook, you must provide evidence that you have the skills and qualifications to fulfil the specific job requirements.
<br><br>
Are you a chef looking for work? We would love to hear from you!
</p>
</div>
<div class="need-chef-card-img text-center">
<img src="{{url('frontend/images/chefs.png')}}" class="img-fluid" alt="">
</div>
</div>
</a>
</div>
</div>
</section>
@endsection

@ -60,6 +60,10 @@ Route::get('/service_detail', function(){
return view('service_detail'); return view('service_detail');
}); });
Route::get('/recruitment', function(){
return view('recruitment');
});
Route::get('/news', [HomeController::class, 'news']); Route::get('/news', [HomeController::class, 'news']);
Route::get('/service_view',function(){ Route::get('/service_view',function(){
return view('service_view'); return view('service_view');

Loading…
Cancel
Save