[edit] visa dropdown, pathway page

aplus#35
tribikram 2 years ago
parent a02f4c55ea
commit 6487ff884e
  1. 20
      public/frontend/css/style.css
  2. BIN
      public/frontend/images/education-image.png
  3. BIN
      public/frontend/video/aplus-video.mp4
  4. 2
      resources/views/am_chef.blade.php
  5. 2
      resources/views/labor_agreement.blade.php
  6. 48
      resources/views/layout/app.blade.php
  7. 6
      resources/views/need_chef.blade.php
  8. 21
      resources/views/pathway_programme.blade.php
  9. 23
      resources/views/welcome.blade.php

@ -122,7 +122,7 @@ h4{
font-size: 14px;
}
.service-dropdown{
width: 600px;
width: 350px;
transform: translate(-30%, 0%);
}
.service-drop-card{
@ -272,8 +272,9 @@ Responsive Codes
left: 6%;
}
.banner-description span::before{
content: "Study Programme";
content: attr(data-text);
animation: 12s animate infinite;
animation-delay: 500ms;
padding-left: 10px;
color: #F54C5F;
}
@ -325,16 +326,17 @@ Responsive Codes
@keyframes animate {
0% {
content: "Study Programme";
content: attr(data-text);
}
50% {
content: "Training Programme";
content: attr(data-text2);
}
75% {
content: "Skill Assessment";
content: attr(data-text3);
}
100%{
content: "Skilled Recruitment";
content: attr(data-text4);
}
}
.banner-description h3, .banner-description-two h3, .banner-description-three h3{
@ -366,6 +368,12 @@ Responsive Codes
align-items: center;
gap: 15px;
}
.achivement-sec span{
font-weight: 500;
font-size: 14px;
line-height: 2rem;
color: #202023;
}
/* about us section css */
.about-us-section{
padding: 3rem 6rem;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

@ -17,7 +17,7 @@
</ol>
</nav>
<div class="chef-banner-content">
<h2>I am Chef</h2>
<h2>Work as a Chef</h2>
</div>
</section>
<section class="hiring-chef">

@ -9,7 +9,7 @@
<section class="labor-agreement-banner" style="background: url('frontend/images/labor-agreement.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li>
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol>
</nav>

@ -46,35 +46,15 @@
<a class="nav-link" href="{{url('/about')}}">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="{{url('/services')}}" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
Services
<a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false">
Visas
</a>
<ul class="dropdown-menu service-dropdown" aria-labelledby="navbarDropdown">
<li class="service-drop-card">
<ul>
<h5>Regional Work Visas</h5>
<li>
@foreach($visa_services as $visa_service)
<a href="{{url('/visa_service/'.$visa_service->slug)}}" class="dropdown-item">{{$visa_service->name}}</a>
@endforeach
</li>
</ul>
<ul>
<h5>Assessments</h5>
@foreach($services as $service)
<li>
@if($service->name == "Recruitment")
<a class="dropdown-item" href="{{url('/recruitment')}}">
@elseif($service->name === "Insurance")
<a class="dropdown-item" href="{{url('/insurance')}}">
@else
<a class="dropdown-item" href="{{url('/service/'.$service->slug)}}">
@endif
{{$service->name}}</a>
</li>
@endforeach
</ul>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
@foreach($visa_services as $visa_service)
<a href="{{url('/visa_service/'.$visa_service->slug)}}" class="dropdown-item">{{$visa_service->name}}</a>
@endforeach
</li>
<!-- <li><a class="dropdown-item" href="/service_view">Skill Assessment</a></li>
<li><a class="dropdown-item" href="/service_detail">Permanent Work Visa</a></li> -->
@ -86,14 +66,14 @@
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li>
<a class="dropdown-item" href="{{url('/need_chef')}}">I Need a Chef</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">I am a Chef</a>
<a class="dropdown-item" href="{{url('/need_chef')}}">Hire a Chef</a>
<a class="dropdown-item" href="{{url('/am_chef')}}">Work as a Chef</a>
<a class="dropdown-item" href="{{url('/labor_agreement')}}">Labour Agreements</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url('/pathway_programme')}}">Pathway</a>
<a class="nav-link" href="{{url('/pathway_programme')}}">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url('/news')}}">News</a>
@ -152,8 +132,8 @@
<div class="recruitment">
<h2>Recruitment</h2>
<ul>
<li><a href="/need_chef">I Need a Chef</a></li>
<li><a href="/am_chef">I am a Chef</a></li>
<li><a href="/need_chef">Hire a Chef</a></li>
<li><a href="/am_chef">Work as a Chef</a></li>
<li><a href="/labor_agreement">Labour Agreements</a></li>
</ul>
</div>
@ -163,7 +143,7 @@
<h2>Quick Links</h2>
<ul>
<li><a href="{{url('/about')}}">About us</a></li>
<li><a href="{{url('/pathway_programme')}}">Pathway</a></li>
<li><a href="{{url('/pathway_programme')}}">Education</a></li>
<li><a href="{{url('/news')}}">News</a></li>
<li><a href="{{url('/contact')}}">Contact us</a></li>
</ul>

@ -12,19 +12,19 @@
<section class="need-chef-banner" style="background: url('frontend/images/need-chef.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Aplusagency</a></li>
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Recruitment</li>
</ol>
</nav>
<div class="chef-banner-content">
<h2>I need a Chef</h2>
<h2>Hire a Chef</h2>
</div>
</section>
<section class="hiring-chef">
<div class="row">
<div class="col-md-6">
<div class="hiring-content">
<h5>Hiring <hr></h5>
<h5>Recruitment<hr></h5>
<h3>Need a Chef or Cook?</h3>
<p>Let us know via our enquiry form.</p>
<h6>What are the next steps?</h6>

@ -10,11 +10,28 @@
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Pathway Programme</li>
<li class="breadcrumb-item active" aria-current="page">Education</li>
</ol>
</nav>
<div class="services-banner-content">
<h2>Pathway Programme</h2>
<h2>Education</h2>
</div>
</section>
<section class="service-secondary">
<div class="row">
<div class="col-md-6">
<div class="service-secondary-img">
<img src="{{url('frontend/images/education-image.png')}}" class="w-100" alt="">
</div>
</div>
<div class="col-md-6">
<div class="service-secondary-desc">
<h5><hr>Education</h5>
<h3>Pathway from Education</h3>
<p>Some students come to Australia and like living here so much that they decide to live and apply for Permanent Residence Visa after completing their studies. Several pathways to a better future in Australia for international students are available, which will be determined by factors such as qualification, English language ability, employment history and other requirements.</p>
<a href="/contact">Book An Appointment</a>
</div>
</div>
</div>
</section>
<section class="pathway-steps-section">

@ -16,7 +16,12 @@
</video>
<span class="banner-shadow"></span>
<div class="banner-description">
<h2>4 Easy Steps To <br> Secure a Better Future <br> In Australia <span></span></h2>
<h2>4 Easy Steps To <br> Secure a Better Future <br> In Australia
<span data-text="Study Programme"></span>
<span data-text2="Training Programme"></span>
<span data-text3="Skill Assessment"></span>
<span data-text4="Skilled Recruitment"></span>
</h2>
{{-- <h3>{{$slider->title2}}</h3> --}}
{{-- <p>{{$slider->description}}</p> --}}
@ -37,17 +42,21 @@
<section class="achievement-section">
<div class="achievement-items">
<div class="achivement-sec">
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value ?? ''}}</h5>
<img src="{{url('frontend/icons/success-icon.svg')}}" class="img-fluid" alt="">
<h5>{{$visa_success->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}}</h5>
<img src="{{url('frontend/icons/visa-approved.svg')}}" alt="">
<h5>{{$visa_approved->value ?? ''}}</h5><span>(This year)</span>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5>
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>{{$partner_institution->value ?? ''}}</h5>
</div>
<div class="achivement-sec">
<img src="{{url('frontend/icons/institution.svg')}}" alt="">
<h5>50+ Employers</h5>
</div>
</div>
</section>
<!-- Achievement section -->

Loading…
Cancel
Save