Inital Commit
This commit is contained in:
51
resources/views/client/sunsari/inside/article.blade.php
Normal file
51
resources/views/client/sunsari/inside/article.blade.php
Normal file
@@ -0,0 +1,51 @@
|
||||
@section('header')
|
||||
<title>{{$article->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>{{$article->title}}</h1>
|
||||
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li class="current">{{$article->title}}</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
|
||||
|
||||
|
||||
<section>
|
||||
<!-- ABOUT US START -->
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">{{$article->title}}</h5>
|
||||
<p>{!!processForShortcode($article->text)!!}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg mb-4">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($article->cover_photo)}}" alt="">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT US END -->
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
@include('client.sunsari.partials.footer')
|
53
resources/views/client/sunsari/inside/certificates.blade.php
Normal file
53
resources/views/client/sunsari/inside/certificates.blade.php
Normal file
@@ -0,0 +1,53 @@
|
||||
@section('header')
|
||||
<title>Certificates - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>license</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">license</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="filter-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 mx-auto">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
@foreach(MPCMS::getCertificates() as $Certificate)
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($Certificate->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($Certificate->thumb)}}" alt="" />
|
||||
</a>
|
||||
<p class="custom-text2 mt-3 text-center">{{$Certificate->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
46
resources/views/client/sunsari/inside/contact.blade.php
Normal file
46
resources/views/client/sunsari/inside/contact.blade.php
Normal file
@@ -0,0 +1,46 @@
|
||||
@section('header')
|
||||
<title>Contact Us - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Contact Us</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li class="current">Contact Us</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row g-5">
|
||||
<div class="col-md-6">
|
||||
<div class="contact-left-form">
|
||||
<h2>Contact Us</h2>
|
||||
<p>Send us your message and we will be contacting you shortly.</p>
|
||||
{{MPCMS::showForm($contact->forms_id)}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 spacing-md">
|
||||
<div class="contact-right-map">
|
||||
{!!$contact->google_map!!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
46
resources/views/client/sunsari/inside/country.blade.php
Normal file
46
resources/views/client/sunsari/inside/country.blade.php
Normal file
@@ -0,0 +1,46 @@
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Demand Countries</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Demand Countries</li>
|
||||
<li class="current">Countries</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getCountries() as $country)
|
||||
<div class="col-6 col-sm-6 col-md-3 col-lg-3 customer-column-4">
|
||||
<figure class="client-logo"><a href="{{site_url($country->cover_photo)}}"><img src="{{site_url($country->cover_photo)}}" alt=""></a></figure>
|
||||
<p class="custom-text2 mt-3 text-center" style="font-weight: bold; color: black">{{$country->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
53
resources/views/client/sunsari/inside/demands.blade.php
Normal file
53
resources/views/client/sunsari/inside/demands.blade.php
Normal file
@@ -0,0 +1,53 @@
|
||||
@section('header')
|
||||
<title>Job Demands - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Job Demand</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Demand</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="filter-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 mx-auto">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($JobDemand->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($JobDemand->thumb)}}" alt="" />
|
||||
</a>
|
||||
<p class="custom-text2 mt-3 text-center" style="color: black; font-weight: bold;">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
45
resources/views/client/sunsari/inside/industries.blade.php
Normal file
45
resources/views/client/sunsari/inside/industries.blade.php
Normal file
@@ -0,0 +1,45 @@
|
||||
@section('header')
|
||||
<title>Clients - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Clients</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Industries Served</li>
|
||||
<li class="current">Industries</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getCompanies() as $client)
|
||||
<div class="col-6 col-sm-6 col-md-3 col-lg-3 customer-column-4">
|
||||
<figure class="client-logo"><a href="{{site_url($client->logo)}}"><img src="{{site_url($client->logo)}}" alt="" height="150px" width="150px"></a></figure>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
@@ -0,0 +1,62 @@
|
||||
@section('header')
|
||||
<title>Job Categories - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Job Categories</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Job Categoriess</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- SERVICES START -->
|
||||
|
||||
<section>
|
||||
<div class="bg-wrapper">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-6 col-lg-4 mb-3">
|
||||
<div class="icon-boxes">
|
||||
<figure class="ib-icon">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</figure>
|
||||
<h4> <a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
</h4>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120)!!}
|
||||
</p>
|
||||
<a class="learn-more" href="{{ route('single_job_category', ['alias' => $category->alias]) }}">Learn More <i></i></a>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
||||
|
@@ -0,0 +1,56 @@
|
||||
@section('header')
|
||||
<title>{{$job_category->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>{{$job_category->title}}</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">{{$job_category->title}}</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">{{$job_category->title}}</h5>
|
||||
|
||||
<p> {!!$job_category->details!!} </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="{{site_url($job_category->thumb)}}" alt="">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
@@ -0,0 +1,84 @@
|
||||
@section('header')
|
||||
<title>Mission & Vision - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Mission & Vision</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">Mission & Vision</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- WIDE SECTION END -->
|
||||
<div class="tp-wide-section-about mt-5">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-5 col-xl-6">
|
||||
<div class="tp-ws-left" style="height: 450px">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-7 col-xl-6">
|
||||
<div class="tp-ws-right">
|
||||
<div class="tp-ws-right-content">
|
||||
@php
|
||||
$missions = MPCMS::getarticle('mission');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($missions->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $missions->title }}</h4>
|
||||
<p>{!! substr($missions->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
@php
|
||||
$visions = MPCMS::getarticle('vision');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($visions->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $visions->title }}</h4>
|
||||
<p>{!! substr($visions->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
@php
|
||||
$objectives = MPCMS::getarticle('objectives');
|
||||
@endphp
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="{{ site_url($objectives->cover_photo) }}" alt="svg">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>{{ $objectives->title }}</h4>
|
||||
<p>{!! substr($objectives->text, 0, 1000) !!}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION START -->
|
||||
</section>
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
50
resources/views/client/sunsari/inside/teams.blade.php
Normal file
50
resources/views/client/sunsari/inside/teams.blade.php
Normal file
@@ -0,0 +1,50 @@
|
||||
@section('header')
|
||||
<title>Our Team - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Our Team </h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About</li>
|
||||
<li class="current">Our Team</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row all-team-layer">
|
||||
@foreach (MPCMS::getTeams() as $Team)
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="{{ site_url($Team->thumb) }}" alt="" height="300px">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>{{ $Team->title }}</h3>
|
||||
<p>{{ $Team->designation }}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
@include('client.sunsari.partials.footer')
|
64
resources/views/client/sunsari/inside/testimonial.blade.php
Normal file
64
resources/views/client/sunsari/inside/testimonial.blade.php
Normal file
@@ -0,0 +1,64 @@
|
||||
@section('header')
|
||||
<title>Testimonials - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Testimonials</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Testimonials</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<div class="testimonial-banner mt-5">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="container up-testimonial-layer mb-5">
|
||||
<div class="center-title mb-3">
|
||||
<h5>THIS IS OUT INSPIRATION</h5>
|
||||
<h2>What Our Customer Says</h2>
|
||||
</div>
|
||||
<div class="testimonials-carousel">
|
||||
<div class="owl-carousel owl-theme">
|
||||
@php
|
||||
$testimonials = MPCMS::getarticle('testimonials');
|
||||
@endphp
|
||||
@foreach($testimonials->children as $testimonial)
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>{!! substr($testimonial->text, 0, 1000)!!}</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="{{ site_url($testimonial->cover_photo) }}" alt="">
|
||||
</figure>
|
||||
<h4>{{$testimonial->title}}</h4>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="owl-theme">
|
||||
<div class="owl-controls">
|
||||
<div class="custom-nav owl-nav"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@include('client.sunsari.partials.footer')
|
45
resources/views/client/sunsari/nav.blade.php
Normal file
45
resources/views/client/sunsari/nav.blade.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<div class="main-nav">
|
||||
<div class="container">
|
||||
<nav id="navigation1" class="navigation">
|
||||
<div class="nav-header">
|
||||
<a class="nav-logo" href="{{ site_url() }}">
|
||||
<img src="{{ site_url(SITEVARS->primary_logo) }}" class="white-logo" alt="">
|
||||
<img src="{{ site_url(SITEVARS->secondary_logo) }}" class="dark-logo" alt="">
|
||||
</a>
|
||||
<div class="nav-toggle"></div>
|
||||
</div>
|
||||
<div class="nav-menus-wrapper">
|
||||
<ul class="nav-menu align-to-right">
|
||||
@php
|
||||
$menuItems = MPCMS::getMenuItems('header-menu');
|
||||
@endphp
|
||||
|
||||
@foreach ($menuItems as $menuItem)
|
||||
@php
|
||||
$menuItem->alias = str_replace('-', '_', $menuItem->alias);
|
||||
$routeName = $menuItem->alias;
|
||||
$routeUrl = route($routeName);
|
||||
@endphp
|
||||
|
||||
<li>
|
||||
@if (!empty($menuItem->children))
|
||||
<a href="#">{{ $menuItem->title }}</a> <!-- Parent item is unclickable -->
|
||||
<ul class="nav-dropdown">
|
||||
@foreach ($menuItem->children as $menu)
|
||||
@php
|
||||
$menuRouteName = $menuItem->alias . '.' . $menu->alias;
|
||||
$menuRouteUrl = route($menuRouteName);
|
||||
@endphp
|
||||
<li><a href="{{ $menuRouteUrl }}">{{ $menu->title }}</a></li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@else
|
||||
<a href="{{ $routeUrl }}">{{ $menuItem->title }}</a> <!-- Regular clickable item -->
|
||||
@endif
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
96
resources/views/client/sunsari/new/demand.php
Normal file
96
resources/views/client/sunsari/new/demand.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Job Demand</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Demand</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="filter-container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 mx-auto">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio1.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio1.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio2.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio2.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio3.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio3.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box seo design">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio4.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio4.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box creative">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio5.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio5.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid-box design">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio6.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio6.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box creative">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio7.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio7.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="grid-box seo creative">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio8.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio8.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="grid-box seo creative">
|
||||
<a class="image-popup-vertical-fit" href="images/commons/home-niches/portfolio/portfolio9.jpg">
|
||||
<div class="image-mask"></div>
|
||||
<img src="images/commons/home-niches/portfolio/portfolio9.jpg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- GALLERY GRID END -->
|
||||
|
||||
<?php include( 'footer.php' );?>
|
133
resources/views/client/sunsari/new/footer.php
Normal file
133
resources/views/client/sunsari/new/footer.php
Normal file
@@ -0,0 +1,133 @@
|
||||
|
||||
<!-- FOOTER START -->
|
||||
<footer>
|
||||
<div class="container mt-5">
|
||||
<div class="top-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-xl-7">
|
||||
<h3>You give us your demand and stay relaxed. We match exactly qualified manpower needed for your business.</h3>
|
||||
|
||||
</div>
|
||||
<div class="col-lg-12 col-xl-5">
|
||||
<div class="footer-btn">
|
||||
<a class="tp-btn-primary" href="#" target="_blank" role="button">Join Us Now</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="center-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-5">
|
||||
<div class="footer-col footer-left-col">
|
||||
<figure class="site-footer-logo">
|
||||
<img src="images/logos/logo.png" alt="">
|
||||
</figure>
|
||||
<p>Let's develop your project with this impressive and powerful template that helps you
|
||||
create beautiful web pages. An original solution for any business.</p>
|
||||
<ul class="footer-social">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2">
|
||||
<div class="footer-col">
|
||||
<h5>Quick Links</h5>
|
||||
<ul class="quick-links">
|
||||
<li><a href="index.html">FAQs</a></li>
|
||||
<li><a href="services-style-1.html">License & Certificates</a></li>
|
||||
<li><a href="blog-full-width.html">Demand Listing</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2">
|
||||
<div class="footer-col">
|
||||
<h5>Resources</h5>
|
||||
<ul class="quick-links">
|
||||
<li><a href="profile-style-1.html">Instructions for Resume</a></li>
|
||||
<li><a href="team-style-1.html">Tips for interviews</a></li>
|
||||
<li><a href="careers-style-1.html">Resources for Skill Development</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-3">
|
||||
<div class="footer-col">
|
||||
<h5>Get in Touch</h5>
|
||||
<ul class="footer-contact">
|
||||
<li class="phone"><a href="tel:123-456-7890">+ 123-456-7890</a></li>
|
||||
<li class="email"><a href="mailto:info@merit.com">info@sunsarioverseas.com</a></li>
|
||||
<li>
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<i class="fas fa-map-pin"></i>
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<p>Sunsari, Nepal</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="bottom-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="footer-copyright">
|
||||
<p>© 2023 <a
|
||||
href="#"
|
||||
target="_blank">Sunsari Overseas</a>. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<ul class="footer-terms">
|
||||
<li><a href="terms.html">Terms</a></li>
|
||||
<li><a href="privacy.html">Privacy</a></li>
|
||||
<li><a href="contact-style-4.html">Support</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- FOOTER END -->
|
||||
|
||||
<!-- SCROLL TOP -->
|
||||
<a href="#0" class="cd-top">Top</a>
|
||||
|
||||
<!-- TEMPLATE MAIN JAVASCRIPT FILES -->
|
||||
<script src="js/lib/jquery-3.6.0.min.js"></script>
|
||||
<script src="js/lib/bootstrap.min.js"></script>
|
||||
<script src="js/lib/plugins.js"></script>
|
||||
<script src="js/lib/megamenu.js"></script>
|
||||
<script src="js/lib/navigation.js"></script>
|
||||
<script src="js/lib/navigation.fixed.min.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
|
||||
<!-- REVOLUTION JS FILES -->
|
||||
<script src="revolution/js/jquery.themepunch.tools.min.js"></script>
|
||||
<script src="revolution/js/jquery.themepunch.revolution.min.js"></script>
|
||||
|
||||
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS (Load Extensions only on Local File Systems ! The following part can be removed on Server for On Demand Loading) -->
|
||||
<script src="revolution/js/extensions/revolution.extension.actions.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.carousel.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.migration.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.navigation.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.parallax.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
|
||||
<script src="revolution/js/extensions/revolution.extension.video.min.js"></script>
|
||||
<script src="js/rev-sliders/construction.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
195
resources/views/client/sunsari/new/header.php
Normal file
195
resources/views/client/sunsari/new/header.php
Normal file
@@ -0,0 +1,195 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US" class="no-js">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<!-- TITLE -->
|
||||
<title>Home - Sunsari Overseas PVt. Ltd.</title>
|
||||
|
||||
<!-- META TAGS -->
|
||||
<meta name="keywords"
|
||||
content="Praya HR, Pragya Human, Pragya Human Recruitment, Nepal Recruitment, Nepal Recruit, nepali people, nepali workers, Nepal Manpower">
|
||||
<meta name="description" content="Pragya Human Recruitment">
|
||||
|
||||
<!-- FAVICON -->
|
||||
|
||||
|
||||
<!-- REVOLUTION ADDONS -->
|
||||
<link href="http://fonts.googleapis.com/css?family=Roboto%3A700%2C300" rel="stylesheet" property="stylesheet"
|
||||
type="text/css" media="all" />
|
||||
<link rel="stylesheet" type="text/css" href="revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css">
|
||||
<link rel="stylesheet" type="text/css" href="revolution/fonts/font-awesome/css/font-awesome.css">
|
||||
|
||||
<!-- REVOLUTION STYLE SHEETS -->
|
||||
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css">
|
||||
|
||||
<!-- REVOLUTION LAYERS STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
|
||||
<link rel="stylesheet" href="css/slider-revolution.css">
|
||||
|
||||
<!-- REVOLUTION NAVIGATION STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
|
||||
|
||||
<!-- MAIN CSS STYLE SHEET -->
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
<link rel="stylesheet" href="css/stylesheet.css">
|
||||
<link rel="stylesheet" href="css/responsive.css">
|
||||
|
||||
<!-- PRAGYA CUSTOM CSS -->
|
||||
<link rel="stylesheet" href="css/partials/niches/construction.css">
|
||||
|
||||
|
||||
<!-- MODERNIZR LIBRARY -->
|
||||
<script src="js/modernizr-custom.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<!-- HEADER START -->
|
||||
<header>
|
||||
<!-- TOP HEADER START -->
|
||||
<div class="top-header">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="top-contact">
|
||||
<li class="phone"><span class="tel-no"><a href="tel:123-456-7890"> +123-456-7890</a></span>
|
||||
</li>
|
||||
<li class="email"><a href="mailto:info@pragyahr.com">info@pragyahr.com</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="top-social">
|
||||
<ul class="social-list">
|
||||
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
|
||||
<li><a href="#"><i class="fab fa-dribbble"></i></a></li>
|
||||
<li>
|
||||
<!-- Button trigger modal -->
|
||||
<div class="center-element">
|
||||
<button type="button" class="btn btn-default" data-toggle="modal"
|
||||
data-target="#exampleModal2">Login</button>
|
||||
</div>
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade custom-modal" id="exampleModal2" tabindex="-1"
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content login-modal">
|
||||
<button type="button" class="btn-close" data-dismiss="modal"
|
||||
aria-label="Close"></button>
|
||||
<div class="modal-body">
|
||||
<figure class="login-avatar">
|
||||
<img src="images/icons/user-login-2.png" alt="">
|
||||
</figure>
|
||||
<h4>Merit</h4>
|
||||
<p>Welcome Back!</p>
|
||||
<div class="google-btn">
|
||||
<button type="submit" class="tp-btn-primary">
|
||||
<img class="tp-goole-icon"
|
||||
src="images/icons/google-icon.png" alt="">
|
||||
Sign in with Google
|
||||
</button>
|
||||
</div>
|
||||
<p>Or</p>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<form>
|
||||
<div class="form-group">
|
||||
<input type="email" class="form-control login-fc"
|
||||
placeholder="Email or Username">
|
||||
</div>
|
||||
<div class="form-group mt-3">
|
||||
<input type="password" class="form-control login-fc"
|
||||
placeholder="Password">
|
||||
</div>
|
||||
<div
|
||||
class="login-options d-flex justify-content-between mt-3">
|
||||
<div class="have-account">
|
||||
<p><a href="#">Dont have an account?</a></p>
|
||||
</div>
|
||||
<div class="forgot-password">
|
||||
<p><a href="#">Forgot password?</a></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="login-btn">
|
||||
<button type="submit"
|
||||
class="tp-btn-primary">Login</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="top-line">
|
||||
</div>
|
||||
</div>
|
||||
<!-- TOP HEADER END -->
|
||||
|
||||
<!-- MEGAMENU START -->
|
||||
<div class="main-nav">
|
||||
<div class="container">
|
||||
<nav id="navigation1" class="navigation">
|
||||
<div class="nav-header">
|
||||
<a class="nav-logo" href="index.php">
|
||||
<img src="images/logos/logo.png" class="white-logo" alt="">
|
||||
<img src="images/logos/logo-black.png" class="dark-logo" alt="">
|
||||
</a>
|
||||
<div class="nav-toggle"></div>
|
||||
</div>
|
||||
<div class="nav-menus-wrapper">
|
||||
<ul class="nav-menu align-to-right">
|
||||
<li><a href="index.php">HOME</a></li>
|
||||
<li><a href="#">ABOUT US</a>
|
||||
<ul class="nav-dropdown">
|
||||
<li><a href="introduction.php">Introduction</a></li>
|
||||
<li><a href="mission-vision.php">Mission & Vision</a></li>
|
||||
<li><a href="team.php">Our Team</a></li>
|
||||
<li><a href="message-from-md.php">Leadership Profile</a></li>
|
||||
<li><a href="license.php">Legal Documents</a></li>
|
||||
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="#">JOB SEEKERS</a>
|
||||
<ul class="nav-dropdown">
|
||||
<li><a href="job-categories.php">Job Categories</a></li>
|
||||
<li><a href="demand.php">Demand Listing</a></li>
|
||||
<li><a href="instructions-for-resume.php">Instrucitons for Resume</a></li>
|
||||
<li><a href="tips-for-interview.php">Tips for Interviews</a></li>
|
||||
<li><a href="resources-for-development.php">Resources for Skill Development</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="industries.php">INDUSTRIES SERVED</a></li>
|
||||
<li><a href="#">EMPLOYERS</a>
|
||||
<ul class="nav-dropdown">
|
||||
<li><a href="nepal.php">About Nepal</a></li>
|
||||
<li> <a href="nepal-labor-law.php"> Nepal Labor Law</a></li>
|
||||
<li> <a href="services-and-solutions.php">Employer services and solutions</a></li>
|
||||
<li> <a href="information-on-hiring-process.php">Information on Hiring Process</a></li>
|
||||
<li> <a href="request-for-services.php">Request for manpower services</a></li>
|
||||
<li> <a href="testimonials.php">Testimonials from Clients</a></li>
|
||||
<li><a href="why-recruit-from-us.php">Why Recruit from Nepal?</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="contact-us.php">CONTACT US</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
<!-- MEGAMENU END -->
|
16
resources/views/client/sunsari/new/index.php
Normal file
16
resources/views/client/sunsari/new/index.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php include('header.php'); ?>
|
||||
<?php include('template-parts/slider.php'); ?>
|
||||
</header>
|
||||
<!-- HEADER END -->
|
||||
|
||||
<section>
|
||||
<?php include('template-parts/about.php'); ?>
|
||||
<?php include('template-parts/promote.php'); ?>
|
||||
<?php include('template-parts/service.php'); ?>
|
||||
<?php include('template-parts/gallery.php'); ?>
|
||||
<?php include('template-parts/clients.php'); ?>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<?php include('footer.php'); ?>
|
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Information on Hiring Process</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Information on Hiring Process</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Information on Hiring Process</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
50
resources/views/client/sunsari/new/introduction.php
Normal file
50
resources/views/client/sunsari/new/introduction.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php include( 'header.php' ); ?>
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>About Us</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Pages</li>
|
||||
<li class="current">About Us</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<!-- ABOUT US START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-7">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">About Sunsari Overseas</h5>
|
||||
<p><strong>Sunsari Overseas Pvt. Ltd. is a renowned company established in Sunsari, Nepal. It is a leading provider of various services in the international market, catering to the needs of clients in different sectors.</strong></p>
|
||||
<p>The company offers a wide range of services, including manpower recruitment, overseas employment, immigration services, and visa processing. Their expertise lies in matching skilled and professional individuals with employment opportunities abroad, enabling them to explore their full potential and contribute effectively in their chosen fields.</p>
|
||||
<p>Sunsari Overseas Pvt. Ltd. has built a strong reputation for its commitment to quality and integrity. They strive to deliver personalized solutions to their clients, ensuring that their requirements are met in the most efficient and cost-effective manner. With a team of highly experienced professionals, the company follows a rigorous selection process to identify the most suitable candidates for various job vacancies overseas.</p>
|
||||
<p>Furthermore, Sunsari Overseas Pvt. Ltd. also provides assistance in visa processing, documentation, and immigration services. They have a deep understanding of the complex immigration laws and regulations and offer guidance and support to individuals and families looking to relocate or work abroad.</p>
|
||||
<p>The success of Sunsari Overseas Pvt. Ltd. can be attributed to their strong partnerships with trusted international agencies and their dedication to delivering exceptional services. They have established a vast network of contacts in various destinations, allowing them to provide comprehensive and reliable solutions to their clients.</p>
|
||||
<p>Overall, Sunsari Overseas Pvt. Ltd. is a reputable company that has made a significant contribution to the employment and immigration sector in Nepal. With their professionalism, expertise, and commitment to client satisfaction, they continue to be a preferred partner for individuals and organizations seeking reliable services for their international ventures.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-5 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="images/commons/inner-pages/front-view-off-office-desk.jpg" alt="">
|
||||
</figure>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT US END -->
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
<?php include( 'footer.php' ); ?>
|
62
resources/views/client/sunsari/new/message-from-md.php
Normal file
62
resources/views/client/sunsari/new/message-from-md.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Message From MD</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About us</li>
|
||||
<li class="current">Message From MD</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="about-us-left">
|
||||
<h5 class="overheadline">Managing Director Name</h5>
|
||||
|
||||
<p><strong>We focus to develop a multipurpose template that can be easy customize and implement
|
||||
to any business.</strong></p>
|
||||
<p>You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,You only need basic knowledge of HTML and CSS to be able to implement this template on your
|
||||
website. The code is totally clean, well organized and documented for easy understanding,
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 spacing-lg">
|
||||
<figure class="about-right-feauture">
|
||||
<img src="images/commons/inner-pages/woman-working-at-office.jpg" alt="">
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
|
||||
<?php include( 'footer.php' );?>
|
73
resources/views/client/sunsari/new/mission-vision.php
Normal file
73
resources/views/client/sunsari/new/mission-vision.php
Normal file
@@ -0,0 +1,73 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Mission & Visions</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>About us</li>
|
||||
<li class="current">Mission & Vision</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- WIDE SECTION END -->
|
||||
<div class="tp-wide-section-about mt-5 mb-5">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-5 col-xl-6">
|
||||
<div class="tp-ws-left">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-7 col-xl-6">
|
||||
<div class="tp-ws-right">
|
||||
<div class="tp-ws-right-content">
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/levels.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Mission</h4>
|
||||
<p>With more than 100 templates, it allows you to create almost any type of web
|
||||
pages.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/document.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Vision</h4>
|
||||
<p>Complete and clear documentation for an easy and fast installation.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="media-object-card moc-center">
|
||||
<figure class="moc-thumbnail">
|
||||
<img src="images/icons/support.svg" alt="">
|
||||
</figure>
|
||||
<div class="moc-caption">
|
||||
<h4>Objectives</h4>
|
||||
<p>If you have any problems in the installation process, we are here to help you.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION START -->
|
||||
</section>
|
||||
|
||||
|
||||
<?php include( 'footer.php' );?>
|
69
resources/views/client/sunsari/new/nepal-labor-law.php
Normal file
69
resources/views/client/sunsari/new/nepal-labor-law.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Nepal Labor Law</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Nepal Labor Law</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Labor Law</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
69
resources/views/client/sunsari/new/nepal.php
Normal file
69
resources/views/client/sunsari/new/nepal.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>About Nepal</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">About Nepal</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Nepal</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
83
resources/views/client/sunsari/new/request-for-services.php
Normal file
83
resources/views/client/sunsari/new/request-for-services.php
Normal file
@@ -0,0 +1,83 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Request for Services</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Request for Services</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5 ">
|
||||
<div class="row g-5">
|
||||
<div class="col-md-12">
|
||||
<div class="contact-left-form">
|
||||
<h2>Request for Services</h2>
|
||||
<p>Send us your message and we will be contacting you shortly.</p>
|
||||
<form action="https://api.web3forms.com/submit" method="POST" id="form">
|
||||
<input type="hidden" name="access_key" value="96ae1f65-5889-4359-beff-104fd343114a" />
|
||||
<input type="hidden" name="subject" value="New Submission from Web3Forms" />
|
||||
<input type="checkbox" name="botcheck" id="" style="display: none;" />
|
||||
|
||||
<div class="form-layer">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<label for="name" class="fl-custom mb-2">Full Name</label>
|
||||
<input type="text" class="form-control fc-custom" id="name" name="name" required placeholder="">
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label for="lastname" class="fl-custom mb-2">Last Name</label>
|
||||
<input type="text" class="form-control fc-custom" id="lastname" name="lastname" required placeholder="">
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label for="email" class="fl-custom mb-2">Email Address</label>
|
||||
<input type="email" class="form-control fc-custom" name="email" id="email" required placeholder="">
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label for="phone" class="fl-custom mb-2">Phone Number</label>
|
||||
<input type="text" class="form-control fc-custom" name="phone" id="phone" required placeholder="">
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6">
|
||||
<label for="country" class="fl-custom mb-2">Country </label>
|
||||
<input type="text" class="form-control fc-custom" id="country" name="country" required placeholder="">
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label for="jobtype" class="fl-custom mb-2">Job Type</label>
|
||||
<input type="text" class="form-control fc-custom" id="jobtype" name="jobtype" required placeholder="">
|
||||
</div>
|
||||
<div class="col-lg-12">
|
||||
<label for="message" class="fl-custom mb-2">Your Message</label>
|
||||
<textarea id="message" name="message" class="form-control fc-custom" placeholder="" rows="5"></textarea>
|
||||
</div>
|
||||
<div class="col-lg-12">
|
||||
<button type="submit" class="tp-btn-primary">
|
||||
Send Message
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="text-base text-center text-gray-400" id="result"></p>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Resources for skill development/h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Resources for skill development</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Skill Development Resources</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Services and Solutions</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Services and solutions</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Services and solutions</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
106
resources/views/client/sunsari/new/team.php
Normal file
106
resources/views/client/sunsari/new/team.php
Normal file
@@ -0,0 +1,106 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Our Team </h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Pages</li>
|
||||
<li class="current">About Us</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
|
||||
<div class="row all-team-layer">
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/men-avatar-big-1.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Robert Smith</h3>
|
||||
<p>Web Developer</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 spacing-md-mt-3">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/woman-avatar-big-1.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Lisa Dunham</h3>
|
||||
<p>UI/UX Designer</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 spacing-lg-mt-3">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/men-avatar-big-2.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Albert Taylor</h3>
|
||||
<p>Senior Writter</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mt-3">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/men-avatar-big-5.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Jaison Cabrera</h3>
|
||||
<p>React Developer</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mt-3">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/woman-avatar-big-12.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Jessica Jones</h3>
|
||||
<p>Marketing</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mt-3">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="images/commons/avatar/woman-avatar-big-13.jpg" alt="">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>Jessica Jones</h3>
|
||||
<p>Community Manager</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
<?php include( 'footer.php' );?>
|
106
resources/views/client/sunsari/new/testimonials.php
Normal file
106
resources/views/client/sunsari/new/testimonials.php
Normal file
@@ -0,0 +1,106 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Testimonials</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Employers</li>
|
||||
<li class="current">Testimonials</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
|
||||
<div class="testimonial-banner mt-5">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="container up-testimonial-layer mb-5">
|
||||
<div class="center-title mb-3">
|
||||
<h5>THIS IS OUT INSPIRATION</h5>
|
||||
<h2>What Our Customer Says</h2>
|
||||
</div>
|
||||
<div class="testimonials-carousel">
|
||||
<div class="owl-carousel owl-theme">
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>My testimonial is from a customer or client. They
|
||||
may be an unknown person to the reader, you need
|
||||
to be sure there isn't anything.</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="images/commons/avatar1.jpg" alt="">
|
||||
</figure>
|
||||
<h4>Jake Oliver</h4>
|
||||
<p class="profession">Photographer</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>Start with your super fans. These are your happiest clients and customers. They may
|
||||
have already offered to be a reference so they mind.</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="images/commons/avatar-5.jpg" alt="">
|
||||
</figure>
|
||||
<h4>Emily Lauren</h4>
|
||||
<p class="profession">Shop Assistant</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>An endorsement is typically a well-known influencer giving their public support for a
|
||||
brand. But a testimonial is from a customer or client.</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="images/commons/avatar3.jpg" alt="">
|
||||
</figure>
|
||||
<h4>James Reece</h4>
|
||||
<p class="profession">Travel Agent</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<div class="testimonial-box">
|
||||
<div class="testimonial-text">
|
||||
<p><i class="fas fa-quote-left"></i></p>
|
||||
<p>Weakness of will, which is the same as saying through shrinking from toil and pain.
|
||||
These cases are perfectly simple and easy to distinguish.</p>
|
||||
<div class="bottom-line"></div>
|
||||
</div>
|
||||
<figure class="author-avatar">
|
||||
<img src="images/commons/avatar4.jpg" alt="">
|
||||
</figure>
|
||||
<h4>Sophie Tracy</h4>
|
||||
<p class="profession">Taxi Driver</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="owl-theme">
|
||||
<div class="owl-controls">
|
||||
<div class="custom-nav owl-nav"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<?php include( 'footer.php' );?>
|
69
resources/views/client/sunsari/new/tips-for-interview.php
Normal file
69
resources/views/client/sunsari/new/tips-for-interview.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php include( 'header.php' );?>
|
||||
|
||||
|
||||
<!-- PAGE HERO START -->
|
||||
<div class="pages-hero page-hero-video">
|
||||
<div class="pages-hero-diagonal hero-diagonal-bg-2"></div>
|
||||
<div class="container">
|
||||
<div class="pages-title-center">
|
||||
<h1>Tips for interview</h1>
|
||||
</div>
|
||||
<div class="left-page-nav">
|
||||
<!-- Breadcrumbs -->
|
||||
<ul class="breadcrumb">
|
||||
<li><a href="#">Home</a></li>
|
||||
<li>Job Seekers</li>
|
||||
<li class="current">Tips for interview</li>
|
||||
</ul>
|
||||
<!--/ Breadcrumbs -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- PAGE HERO END -->
|
||||
<section>
|
||||
<div class="container mt-5">
|
||||
<div class="product-wrapper">
|
||||
|
||||
|
||||
<!-- PRODUCT DETAILS TABS START -->
|
||||
<div class="more-information default-tabs mt-5">
|
||||
|
||||
</ul>
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active custom-tab-pane" id="description" role="tabpanel" aria-labelledby="description-tab">
|
||||
<h4>Tips for interview</h4>
|
||||
<p>There are many variations of passages of Lorem Ipsum available, but the majority
|
||||
have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even
|
||||
slightly
|
||||
believable.</p>
|
||||
<p>It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it It is a long established fact that a reader will be distracted by the readable
|
||||
content of a
|
||||
page when looking at its layout.
|
||||
The point of using Lorem Ipsum is that it has a more-or-less normal distribution
|
||||
of letters,
|
||||
as opposed to using 'Content here, content here'</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- PRODUCT DETAILS TABS END -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- RELATE PRODUCTS START -->
|
||||
|
||||
<!-- RELATE PRODUCTS END -->
|
||||
</section>
|
||||
|
||||
<?php include( 'footer.php' );?>
|
104
resources/views/client/sunsari/partials/footer.blade.php
Normal file
104
resources/views/client/sunsari/partials/footer.blade.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<!-- FOOTER START -->
|
||||
<footer>
|
||||
<div class="container mt-5">
|
||||
<div class="top-footer">
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="center-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-5">
|
||||
<div class="footer-col footer-left-col">
|
||||
<figure class="site-footer-logo">
|
||||
<img src="{{ site_url(SITEVARS->primary_logo) }}" alt="">
|
||||
</figure>
|
||||
<p>{{ SITEVARS->content1 }}</p>
|
||||
<ul class="footer-social">
|
||||
<li><a href="{{ SITEVARS->fb }}"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="{{ SITEVARS->insta }}"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="{{ SITEVARS->twitter }}"><i class="fab fa-twitter"></i></a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="footer-col">
|
||||
<h5>Quick Links</h5>
|
||||
<div class="vstack gap-2">
|
||||
<?php $FooterMenu = MPCMS::getMenuItems('footer-menu-1'); ?>
|
||||
@foreach ($FooterMenu as $MenuItem)
|
||||
<a href="{{ route($MenuItem->alias) }}"><i></i>{{ $MenuItem->title }}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-3">
|
||||
<div class="footer-col">
|
||||
<h5>Get in Touch</h5>
|
||||
<ul class="footer-contact">
|
||||
<li class="phone"><a href="tel:{{ SITEVARS->phone }}">{{ SITEVARS->phone }}</a></li>
|
||||
<li class="email"><a href="mailto:{{ SITEVARS->email }}">{{ SITEVARS->email }}</a></li>
|
||||
<li>
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<i class="fas fa-map-pin"></i>
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<p>Airport-09 Sinamangal Kathmandu, Nepal</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="footer-line">
|
||||
<div class="bottom-footer">
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="footer-copyright">
|
||||
<p>© {{ SITEVARS->copyright_text }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- FOOTER END -->
|
||||
|
||||
<!-- SCROLL TOP -->
|
||||
<a href="#0" class="cd-top">Top</a>
|
||||
|
||||
<!-- TEMPLATE MAIN JAVASCRIPT FILES -->
|
||||
<script src="{!! template('js/lib/jquery-3.6.0.min.js') !!}"></script>
|
||||
<script src="{!! template('js/lib/bootstrap.min.js') !!}"></script>
|
||||
<script src="{!! template('js/lib/plugins.js') !!}"></script>
|
||||
<script src="{!! template('js/lib/megamenu.js') !!}"></script>
|
||||
<script src="{!! template('js/lib/navigation.js') !!}"></script>
|
||||
<script src="{!! template('js/lib/navigation.fixed.min.js') !!}"></script>
|
||||
<script src="{!! template('js/main.js') !!}"></script>
|
||||
|
||||
<!-- REVOLUTION JS FILES -->
|
||||
<script src="{!! template('revolution/js/jquery.themepunch.tools.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/jquery.themepunch.revolution.min.js') !!}"></script>
|
||||
|
||||
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS (Load Extensions only on Local File Systems ! The following part can be removed on Server for On Demand Loading) -->
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.actions.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.carousel.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.kenburn.min.j') !!}s"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.layeranimation.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.migration.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.navigation.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.parallax.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.slideanims.min.js') !!}"></script>
|
||||
<script src="{!! template('revolution/js/extensions/revolution.extension.video.min.js') !!}"></script>
|
||||
<script src="{!! template('js/rev-sliders/construction.js') !!}"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
85
resources/views/client/sunsari/partials/header.blade.php
Normal file
85
resources/views/client/sunsari/partials/header.blade.php
Normal file
@@ -0,0 +1,85 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US" class="no-js">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<!-- TITLE -->
|
||||
@yield('header')
|
||||
|
||||
<!-- META TAGS -->
|
||||
<meta name="keywords"
|
||||
content="Sunsari HR, Sunsari, Sunsari Overseas, Nepal Recruitment, Nepal Recruit, nepali people, nepali workers, Nepal Manpower">
|
||||
<meta name="description" content="Sunsari Overseas">
|
||||
|
||||
<!-- FAVICON -->
|
||||
|
||||
|
||||
|
||||
<!-- REVOLUTION ADDONS -->
|
||||
<link href="http://fonts.googleapis.com/css?family=Roboto%3A700%2C300" rel="stylesheet" property="stylesheet"
|
||||
type="text/css" media="all" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css')!!}">
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/fonts/font-awesome/css/font-awesome.css')!!}">
|
||||
|
||||
<!-- REVOLUTION STYLE SHEETS -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/settings.css')!!}">
|
||||
|
||||
<!-- REVOLUTION LAYERS STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/layers.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/slider-revolution.css')!!}">
|
||||
|
||||
<!-- REVOLUTION NAVIGATION STYLES -->
|
||||
<link rel="stylesheet" type="text/css" href="{!! template('revolution/css/navigation.css')!!}">
|
||||
|
||||
<!-- MAIN CSS STYLE SHEET -->
|
||||
<link rel="stylesheet" href="{!! template('css/main.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/stylesheet.css')!!}">
|
||||
<link rel="stylesheet" href="{!! template('css/responsive.css')!!}">
|
||||
|
||||
<link rel="stylesheet" href="{!! template('css/partials/niches/construction.css')!!}">
|
||||
|
||||
<!-- MODERNIZR LIBRARY -->
|
||||
<script src="{!! template('js/modernizr-custom.js')!!}"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<!-- HEADER START -->
|
||||
<header>
|
||||
<!-- TOP HEADER START -->
|
||||
<div class="top-header">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<ul class="top-contact">
|
||||
<li class="phone"><span class="tel-no"><a href="tel:{{SITEVARS->phone}}"> {{SITEVARS->phone}}</a></span>
|
||||
</li>
|
||||
<li class="email"><a href="mailto:{{SITEVARS->email}}">{{SITEVARS->email}}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="top-social">
|
||||
<ul class="social-list">
|
||||
<li><a href="{{SITEVARS->fb}}"><i class="fab fa-facebook-f"></i></a></li>
|
||||
<li><a href="{{SITEVARS->insta}}"><i class="fab fa-instagram"></i></a></li>
|
||||
<li><a href="{{SITEVARS->twitter}}"><i class="fab fa-twitter"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="top-line">
|
||||
</div>
|
||||
</div>
|
||||
<!-- TOP HEADER END -->
|
||||
|
||||
<!-- MEGAMENU START -->
|
||||
|
||||
|
||||
<!-- MEGAMENU END -->
|
62
resources/views/client/sunsari/slider.blade.php
Normal file
62
resources/views/client/sunsari/slider.blade.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<div class="home-slider">
|
||||
<section class="example">
|
||||
<article class="content">
|
||||
|
||||
<div id="rev_slider_1059_1_wrapper" class="rev_slider_wrapper fullscreen-container"
|
||||
data-alias="concept121" data-source="gallery" style="background-color:#000000;padding:0px;">
|
||||
|
||||
<div id="rev_slider_1059_1" class="rev_slider fullscreenbanner" style="display:none;"
|
||||
data-version="5.4.1">
|
||||
<ul>
|
||||
|
||||
@foreach(MPCMS::getslider() as $slider)
|
||||
<!-- SLIDE -->
|
||||
<li data-index="rs-{{$slider->slider_id}}" data-transition="slidingoverlayhorizontal"
|
||||
data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"
|
||||
data-easein="default" data-easeout="default" data-masterspeed="default"
|
||||
data-thumb="{{$slider->thumb}}" data-rotate="0"
|
||||
data-saveperformance="off" data-title="" data-param1="" data-param2=""
|
||||
data-param3="" data-param4="" data-param5="" data-param6="" data-param7=""
|
||||
data-param8="" data-param9="" data-param10="" data-description="">
|
||||
<!-- MAIN IMAGE -->
|
||||
<img src="{{$slider->thumb}}" alt=""
|
||||
data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat"
|
||||
data-bgparallax="5" class="rev-slidebg" data-no-retina>
|
||||
|
||||
<div class="tp-caption Concept-SubTitle tp-resizeme rs-parallaxlevel-2"
|
||||
id="slide-2972-layer-4" data-x="['center','center','center','center']"
|
||||
data-hoffset="['0','0','0','0']" data-y="['middle','middle','middle','middle']"
|
||||
data-voffset="['-65','-65','-57','-54']" data-fontsize="['25','25','20','20']"
|
||||
data-lineheight="['25','25','20','20']" data-width="none" data-height="none"
|
||||
data-whitespace="nowrap" data-type="text" data-responsive_offset="on"
|
||||
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1500,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
|
||||
data-textAlign="['left','left','left','left']" data-paddingtop="[0,0,0,0]"
|
||||
data-paddingright="[0,0,0,0]" data-paddingbottom="[10,10,10,10]"
|
||||
data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 6; white-space: nowrap;text-transform:left; color: var(--primary-color);">
|
||||
{{$slider->slider_desc}} </div>
|
||||
|
||||
<div class="tp-caption Concept-Title tp-resizeme rs-parallaxlevel-2"
|
||||
id="slide-2972-layer-2" data-x="['center','center','center','center']"
|
||||
data-hoffset="['0','0','0','0']" data-y="['middle','middle','middle','middle']"
|
||||
data-voffset="['0','0','0','0']" data-fontsize="['70','70','50','40']"
|
||||
data-lineheight="['70','70','50','40']"
|
||||
data-width="['none','none','none','400']" data-height="none"
|
||||
data-whitespace="['nowrap','nowrap','nowrap','normal']" data-type="text"
|
||||
data-responsive_offset="on"
|
||||
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1700,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
|
||||
data-textAlign="['center','center','center','center']"
|
||||
data-paddingtop="[0,0,0,0]" data-paddingright="[0,0,0,0]"
|
||||
data-paddingbottom="[10,10,10,10]" data-paddingleft="[0,0,0,0]"
|
||||
style="z-index: 7; white-space: nowrap;text-transform:left; font-family: var(--base-font);">{{$slider->slider_title}}</div>
|
||||
</li>
|
||||
|
||||
@endforeach
|
||||
</ul>
|
||||
<div class="tp-bannertimer tp-bottom" style="visibility: hidden !important;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</article>
|
||||
</section>
|
||||
</div>
|
@@ -0,0 +1,24 @@
|
||||
<!-- ABOUT START -->
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<div class="col-xl-5">
|
||||
@php $aboutus=MPCMS::getarticle('welcome') @endphp
|
||||
<figure class="tp-construction-portrait"><img src="{{$aboutus->cover_photo}}"
|
||||
alt="">
|
||||
</figure>
|
||||
</div>
|
||||
<div class="col-xl-7">
|
||||
<div class="tp-construction-about-content">
|
||||
<div class="tp-construction-headline">
|
||||
<h5>About Company</h5>
|
||||
<h2>{!!$aboutus->title!!}</h2>
|
||||
</div>
|
||||
<p> {!!substr($aboutus->text,0,1500).'...'!!}</p>
|
||||
|
||||
|
||||
<a class="tp-btn-primary" href="{{site_url('about/introduction')}}" role="button">Read More...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT END -->
|
@@ -0,0 +1,26 @@
|
||||
<div class="bg-wrapper mt-5">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Collaborators & Clients</h2>
|
||||
<p>Our Partners</p>
|
||||
</div>
|
||||
<div class="row justify-content-center"> <!-- Center the grid -->
|
||||
@php $counter = 0 @endphp
|
||||
@foreach(MPCMS::getcompanies() as $client)
|
||||
@if ($counter < 6)
|
||||
<div class="col-6 col-sm-6 col-md-2 col-lg-2 customer-column-4">
|
||||
<figure class="client-logo">
|
||||
<a href="{{$client->logo}}">
|
||||
<img src="{{$client->logo }}" alt="">
|
||||
</a>
|
||||
</figure>
|
||||
</div>
|
||||
@endif
|
||||
@php $counter++ @endphp
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-3 text-center">
|
||||
<p><a class="tp-btn-primary" href="{{site_url('industries')}}" role="button">View More</a></p>
|
||||
</div>
|
||||
</div>
|
@@ -0,0 +1,44 @@
|
||||
<div class="container">
|
||||
<div class="row g-0">
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-aside">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/medal.png" alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Awarded Company</h4>
|
||||
<p>We’ve married that process with the Co-Construct system.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-center">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/crane-dark.png"
|
||||
alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Truck Construction</h4>
|
||||
<p>Having project leaders assemble roster helped break down.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div class="tp-construction-panel-aside">
|
||||
<div class="d-flex">
|
||||
<div class="flex-shrink-0">
|
||||
<img class="stripe-icon" src="images/icons/home-niches/construction/diploma.png" alt="...">
|
||||
</div>
|
||||
<div class="flex-grow-1 ms-3">
|
||||
<h4>Certification</h4>
|
||||
<p>Along with building stronger project teams, the team also uses.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
<!-- COUNTER START -->
|
||||
<div class="counter-layer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="1450">0</div>
|
||||
<p>PROJECTS COMPLETED</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="3488">0</div>
|
||||
<p>QUALIFIED ENGINEER</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3 tablet-view">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="12093">0</div>
|
||||
<p>COUNTRIES COVERED</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-3 tablet-view">
|
||||
<div class="counter-box outstanding-stat">
|
||||
<div class="counter-statistics">
|
||||
<div class="counter" data-count="8444">0</div>
|
||||
<p>HAPPY CUSTOMERS</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- COUNTER END -->
|
@@ -0,0 +1,35 @@
|
||||
<!-- GALLERY GRID START -->
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="center-title">
|
||||
<h2>Our Latest Demand</h2>
|
||||
<p>Find Your Career, You Deserve it</p>
|
||||
</div>
|
||||
|
||||
<div class="grid" id="kehl-grid">
|
||||
<div class="grid-sizer"></div>
|
||||
|
||||
@php $counter = 0 @endphp
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
@if ($counter < 6)
|
||||
<div class="grid-box building">
|
||||
<a class="image-popup-vertical-fit" href="{{site_url($JobDemand->thumb)}}">
|
||||
<div class="image-mask"></div>
|
||||
<img src="{{site_url($JobDemand->thumb)}}" alt="" />
|
||||
<div class="mt-3">
|
||||
<p class="text-center small-text" style="color: black; font-weight: bold;"><i class="fa-solid me-2"></i>{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
@php $counter++ @endphp
|
||||
@endforeach
|
||||
</div>
|
||||
<!-- "Learn More" Link -->
|
||||
|
||||
<div class="mt-3 text-center">
|
||||
<p><a class="tp-btn-primary" href="{{site_url('job_seekers/current-job-demands')}}" role="button">View More</a></p>
|
||||
</div>
|
||||
|
||||
<!-- GALLERY GRID END -->
|
||||
</div>
|
||||
|
@@ -0,0 +1,23 @@
|
||||
|
||||
<!-- WIDE SECTION START -->
|
||||
<div class="construction-ws mt-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-xl-6">
|
||||
<div class="ws-img-left-layer">
|
||||
@php $whyus=MPCMS::getarticle('why_recruit_from_nepal') @endphp
|
||||
<img src="{{$whyus->cover_photo}}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 col-xl-6">
|
||||
<div class="ws-info-right-layer">
|
||||
<div class="ws-right-content">
|
||||
<h2>{!!$whyus->title!!}</h2>
|
||||
<p><strong>Nepalese workers are renowned for their hard work, loyalty, high sense of responsibility and discipline.</strong></p>
|
||||
<p>{!!substr($whyus->text,0,500).'...'!!}</p>
|
||||
<a class="tp-btn-primary" href="employers/why-recruit-from-us" role="button">Read More...</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- WIDE SECTION END -->
|
@@ -0,0 +1,33 @@
|
||||
<!-- SERVICES START -->
|
||||
<div class="bg-wrapper mt-5">
|
||||
<div class="container">
|
||||
<div class="center-title">
|
||||
<h2>Jobs by Categories</h2>
|
||||
<p>Choose Your Desire Category</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
@foreach(MPCMS::getjobcategories() as $category)
|
||||
<div class="col-md-6 col-lg-4 mb-3">
|
||||
<div class="icon-boxes">
|
||||
<figure class="ib-icon">
|
||||
<a href="{{ route('single_job_category', ['alias' => $category->alias]) }}">
|
||||
<img class="img-fluid custom-img-job" src="{{site_url($category->thumb)}}" alt="">
|
||||
</a>
|
||||
</figure>
|
||||
<h4> <a href="job-category/{{$category->alias}}">
|
||||
<p class="custom-text fs-5">{{$category->title}}</p>
|
||||
</a>
|
||||
</h4>
|
||||
<p class="">
|
||||
{!!substr($category->details,0,120)!!}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="mt-2 text-center">
|
||||
<p><a class="tp-btn-primary" href="{{site_url('job_seekers/job-categories')}}" role="button">View More</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- SERVICES END -->
|
14
resources/views/client/sunsari/welcome.blade.php
Normal file
14
resources/views/client/sunsari/welcome.blade.php
Normal file
@@ -0,0 +1,14 @@
|
||||
@include('client.sunsari.partials.header')
|
||||
@include('client.sunsari.nav')
|
||||
@include('client.sunsari.slider')
|
||||
<!-- HEADER END -->
|
||||
|
||||
<section>
|
||||
@include('client.sunsari.template-parts.about')
|
||||
@include('client.sunsari.template-parts.promote')
|
||||
@include('client.sunsari.template-parts.service')
|
||||
@include('client.sunsari.template-parts.demands')
|
||||
@include('client.sunsari.template-parts.clients')
|
||||
|
||||
</section>
|
||||
@include('client.sunsari.partials.footer')
|
Reference in New Issue
Block a user