관리-도구
편집 파일: employeer.blade.php
@extends('theme.saintsaccessories.websiteEcom') <style> section.employeer_ban { background: url(../images/employeer_ban.webp); } .empl_txt { height: 100%; display: flex; flex-direction: column; background: #123771; justify-content: center; padding: 123px 0 0 70px; } .empl_txt h1 { color: white; text-transform: capitalize; } .empl_txt h2 { color: white; text-transform: capitalize; font-size: 44px; } .empl_txt p { font-size: 18px; color: white; } header.header-main { background: black; } header.header-main .header-logo { background: white; } header.header-main .header-nav ul li a { color: white; } header.header-main .header-nav ul li a:before { background: #123771 !important; } section.dash_feat_employer { padding: 60px 0 80px 0; } .dash_txt h2 { position: relative; font-weight: 400; display: inline-block; font-size: 32px; } .dash_txt ul li::before { content: "\f00c"; font-family: 'FontAwesome'; font-size: 15px; color: black; left: 15px; position: absolute; } .dash_txt ul li { font-size: 18px; transition: all .6s ease; padding: 0px 0 21px 40px; font-weight: 700; text-transform: capitalize; position: relative; } .dash_txt ul { padding: 50px 0 0 0; } .dash_txt ul li:hover { padding: 0px 0 21px 50px; } .dash_txt h2::before { content: ""; position: absolute; width: 40%; height: 3px; background: #184ea1; bottom: -20px; } .dash_img { display: flex; height: 100%; flex-direction: column; align-items: start; justify-content: center; } .dash_img img { width: 50%; } .dash_img h2 { font-size: 22px; text-transform: capitalize; font-weight: 500; } .candidate_spoBox { border: 1px solid; margin: 60px 0 0px 0; padding: 10px; text-align: center; } section.spotlight_cand { padding: 20px 0 60px 0; } .candidate_spoBox h3 { font-size: 30px; text-align: left; font-weight: 500; padding: 9px 0 0 10px; } .candidate_spoBox a { font-size: 255px; margin: 0 auto; display: inline-block; height: 350px; width: 100%; } .dash_txt p { font-size: 18px; text-transform: capitalize; font-style: italic; } .products_news { text-align: center; padding: 50px 0 60px 0; } .products_news h4 { font-size: 23px; font-weight: 500; text-transform: uppercase; } .products_news h2 { font-size: 40px; text-transform: uppercase; color: #123771; } </style> @section('content') <!-- About banner Section start --> <section class="about-banner employeer_ban"> <div class="container-fluid h-100"> <div class="row h-100"> <div class="col-lg-6 col-12 pl-0"> <div class="empl_txt"> <h1>ERAAS for employers</h1> <h2>Dont Just Hire.... <br> Create a lasting partnership. invest in success</h2> <p>Looking for innovative hiring solutions? We've got you covered!</p> </div> </div> </div> </div> </section> <!-- About banner Section End --> <!--dashboard feature--> <section class="dash_feat_employer" > <div class="container" > <div class="row" > <div class="col-lg-6" > <div class="dash_txt" > <h2>Your Dashboard Feature</h2> <ul> <li>See our top candidates</li> <li>see and manage your workplace ratings</li> <li>post a job</li> <li>requisite oversight</li> <li>request a seat at the roundtable interview</li> </ul> </div> </div> <div class="col-lg-6" > <div class="dash_img" > <img src="{{ asset('public/theme/saintsaccessories/images/random2.PNG')}}" alt=""> </div> </div> </div> </div> </section> <!--dashboard feature--> <section class="dash_feat_employer" > <div class="container" > <div class="row" > <div class="col-lg-6" > <div class="dash_img" > <img src="{{ asset('public/theme/saintsaccessories/images/random3.PNG')}}" alt=""> </div> </div> <div class="col-lg-6" > <div class="dash_txt" > <h2>Outsource your recruiting</h2> <ul> <li>Explore customer service <br> solution with our highly trained <br> and ready to go teams</li> <li>Utilize our ux teams for an <br> innovative customer and product <br> experience analysis</li> <li>contract individual directly</li> </ul> </div> </div> </div> </div> </section> <!--outssourceyourecruite--> <section class="dash_feat_employer" > <div class="container" > <div class="row" > <div class="col-lg-6" > <div class="dash_txt" > <h2>Resrve a seat at the round table</h2> <ul> <li>shared talent resources</li> <!--<li>shared talent resources</li>--> <li>future recruitment opportunities</li> <li>cost efficiency</li> <li>time saving</li> </ul> <p>a dynamic and innovative approach to talent acquisition, benefiting from efficiency, networking and a holistic assessment of candidates</p> </div> <!--<div class="dash_img" >--> <!-- <h2>resrve a seat at the round table</h2>--> <!-- <img src="{{ asset('public/theme/saintsaccessories/images/random4.PNG')}}" alt="">--> <!--</div>--> </div> <div class="col-lg-6" > <div class="dash_img" > <img src="{{ asset('public/theme/saintsaccessories/images/random4.PNG')}}" alt=""> </div> </div> </div> </div> </section> <!--Spotlight candidate section--> <section class="spotlight_cand" > <div class="container"> <div class="dash_txt" > <h2>Candidate Spotlight</h2> </div> <div class="row" > @foreach($spotlightCandidates as $candidate) <div class="col-lg-4"> <div class="candidate_spoBox" > <h3>{{ $candidate->name }}</h3> <a href="" ><img src="{{ asset('public/uploads/profile/' .$candidate->profile_picture) }}" alt="Profile Picture"></a> </div> </div> @endforeach </div> </div> </section> <div class="products_news" > <h4>featured resources</h4> <h2>product news, guides, blogs and more</h2> </div> @endsection