Add new pages for gallery, sitemap, social platforms, terms, and update study destination template
- Created gallery-template.blade.php for displaying a gallery of images. - Added sitemap.blade.php to outline the structure of the website. - Introduced social-platform-template.blade.php for showcasing social media links. - Implemented terms-template.blade.php to present terms and conditions. - Updated study-destination-template.blade.php to remove redundant code and improve structure. - Commented out dashboard toggle switch in navbar for future reference.
This commit is contained in:
@@ -1,108 +1,272 @@
|
||||
@extends('client.raffles.layouts.app')
|
||||
@section('content')
|
||||
@include('client.raffles.pages.partials.breadcumb')
|
||||
<div class="study-destinations-banner">
|
||||
<img src="{{ asset('raffles/assets/images/backgrounds_general/franchise-banner.png') }}" alt="">
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Intro Section-->
|
||||
<section class="p-0 ipad-top-space-margin page-title-big-typography cover-background md-background-position-left-center"
|
||||
style="background-image: url('{{ asset('raffles/assets/images/demo-elder-care-title-bg.jpg') }}')">
|
||||
<div class="container">
|
||||
<div class="down-section text-center"
|
||||
data-anime="{ "translateY": [-50, 0], "opacity": [0,1], "duration": 600, "delay": 0, "staggervalue": 300, "easing": "easeOutQuad" }">
|
||||
<a href="#down-section" class="section-link">
|
||||
<div class="text-dark-gray">
|
||||
<i class="feather icon-feather-chevron-down icon-very-medium"></i>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<section id="down-section">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-4 pe-5 order-2 order-lg-1 lg-pe-3 md-pe-15px"
|
||||
data-anime="{ "el": "childs", "translateY": [50, 0], "opacity": [0,1], "duration": 1200, "delay": 0, "staggervalue": 150, "easing": "easeOutQuad" }">
|
||||
<div class="bg-dark-gray border-radius-6px ps-35px pb-25px pt-25px lg-ps-25px mb-25px">
|
||||
<div class="feature-box feature-box-left-icon-middle">
|
||||
<div
|
||||
class="feature-box-icon feature-box-icon-rounded w-65px h-65px me-20px lg-me-15px rounded-circle bg-base-color rounded-box">
|
||||
<i class="bi bi-telephone-outbound icon-extra-medium text-white"></i>
|
||||
</div>
|
||||
<div class="feature-box-content last-paragraph-no-margin">
|
||||
<span class="mb-5px d-block text-white opacity-6 fw-300">Connect with us?</span>
|
||||
<a href="tel:{{ setting('mobile') }}"
|
||||
class="text-white fs-20 fw-500 lh-22">{{ setting('mobile') }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-very-light-gray border-radius-6px p-40px lg-p-25px md-p-35px">
|
||||
<span class="fs-22 alt-font text-dark-gray fw-600 mb-25px d-inline-block">Contact Us?</span>
|
||||
<div class="contact-form-style-01 mt-0">
|
||||
|
||||
<form action="email-templates/contact-form.php" method="post">
|
||||
<div class="position-relative form-group mb-20px">
|
||||
<span class="form-icon"><i class="bi bi-emoji-smile"></i></span>
|
||||
<input type="text" name="name"
|
||||
class="form-control border-white box-shadow-large required"
|
||||
placeholder="Your name*" />
|
||||
</div>
|
||||
<div class="position-relative form-group mb-20px">
|
||||
<span class="form-icon"><i class="bi bi-envelope"></i></span>
|
||||
<input type="email" name="email"
|
||||
class="form-control border-white box-shadow-large required"
|
||||
placeholder="Your email address*" />
|
||||
</div>
|
||||
<div class="position-relative form-group form-textarea">
|
||||
<span class="form-icon"><i class="bi bi-chat-square-dots"></i></span>
|
||||
<textarea placeholder="Your message" name="comment" class="form-control border-white box-shadow-large" rows="3"></textarea>
|
||||
<input type="hidden" name="redirect" value>
|
||||
<button
|
||||
class="btn btn-large btn-round-edge btn-base-color btn-box-shadow mt-20px submit w-100"
|
||||
type="submit">Send message</button>
|
||||
<div class="mt-20px form-results d-none"></div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<div class="pt-40 why-us">
|
||||
<div class="container-fluid">
|
||||
<div class="row sm:px-20 pr-30 first-row pt-20 pb-30">
|
||||
<div class="col col-xl-6">
|
||||
<div class="franchise-model">
|
||||
<img src="assets/images/backgrounds_general/franchise-model.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8 order-1 order-lg-2 md-mb-50px"
|
||||
data-anime="{ "el": "childs", "translateY": [50, 0], "opacity": [0,1], "duration": 1200, "delay": 0, "staggervalue": 150, "easing": "easeOutQuad" }">
|
||||
<h4 class="text-dark-gray fw-700 ls-minus-1px alt-font mb-20px d-block">
|
||||
{{ $page->short_description }}</h4>
|
||||
{!! $page->description !!}
|
||||
<img src="{{ $page->image }}" class="mt-30px md-mt-15px mb-60px md-mb-40px border-radius-6px" alt>
|
||||
<div class="row row-cols-1 row-cols-md-2 mb-30px md-mb-15px">
|
||||
@isset($page->custom)
|
||||
@foreach ($page->custom as $item)
|
||||
<div class="col">
|
||||
<span
|
||||
class="fs-24 alt-font text-dark-gray ls-minus-05px fw-700 mb-10px d-block">{{ $item['key'] }}</span>
|
||||
<p class="w-90 sm-w-100">{{ $item['value'] }}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
@endisset
|
||||
<div class="col col-xl-6">
|
||||
<div class="flex flex-col gap-10 pb-30 border-bottom">
|
||||
<h2 class="md:text-20 text-50 text-sec">Franchise</h2>
|
||||
<h3 class="md:text-20 text-50 text-brand">Raffles EduCare</h3>
|
||||
<p>Raffles Educare Associates Pvt. Ltd., established in 2005, is one of the best educational
|
||||
consultancy
|
||||
with a successful track record in the overseas education.Over the 15 years of excellence we have
|
||||
97%
|
||||
visa success rate along with highest student satisfaction, fulfilling the career dreams of many
|
||||
students. Since the year of inception, we have been providing educational services of
|
||||
international
|
||||
standards and escalated to be one of the leading institutions.</p>
|
||||
</div>
|
||||
<div class="cover-background p-7 border-radius-6px mb-60px md-mb-40px d-flex justify-content-end align-items-end sm-h-500px"
|
||||
style="background-image: url('{{ $page->sidebar_image }}')">
|
||||
<div
|
||||
class="bg-white box-shadow-quadruple-large border-radius-4px w-50 lg-w-55 sm-w-100 overflow-hidden">
|
||||
<div class="p-40px lg-p-25px last-paragraph-no-margin">
|
||||
<span
|
||||
class="fs-24 alt-font text-dark-gray ls-minus-05px fw-700 mb-10px d-block">{{ $page->sidebar_title }}</span>
|
||||
<p class="w-95 lg-w-100">{{ $page->sidebar_content }}</p>
|
||||
</div>
|
||||
<div class="bg-dark-gray p-15px text-center">
|
||||
<a href="{{ url('/contact') }}" class="text-white fw-600"><i
|
||||
class="feather icon-feather-mail me-10px"></i>Connect with Our Team</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex flex-col gap-20 pt-20">
|
||||
<h5 class="text-20 text-black">Have any questions?
|
||||
Call/Whatsapp</h5>
|
||||
<a class="text-26 text-black" href="tel:9801086208">+977 9801086208</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="become-member">
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="row sm:p-20 mt-20 p-60 ">
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="flex flex-col gap-20 justify-center text-center">
|
||||
<h4 class="text-white text-20">Become one of us!</h4>
|
||||
<h3 class="text-white md:text-24 text-40">Members Benefit</h3>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row py-20">
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-20 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">1</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Brand value Exposure</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-10 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">2</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Leads generation & Referral</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-10 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">3</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Business Expertise support</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-10 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">4</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Be Part of a Global Legacy</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-10 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">5</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Revenue sharing opportunities</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col col-sm-6 col-md-4">
|
||||
<div class="flex gap-10 items-start pt-20">
|
||||
<h4 class="md:text-30 text-80 text-white font-bold">6</h4>
|
||||
<h3 class="md:text-20 text-28 text-white font-bold">Dedicated partnerships Manager</h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row sm:p-20 p-60 bg-sec">
|
||||
<div class="col col-12">
|
||||
<div class=" py-20 ">
|
||||
<div class="py-10">
|
||||
<h3 class="text-white md:text-24 text-44 text-center">Let’s discuss
|
||||
on something <span class="text-brand">cool</span> together</h3>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="franchise-form bg-white">
|
||||
|
||||
<form action="">
|
||||
<label class="text-16 pb-5" for="">Your Name <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<div class="flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">First</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Last</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Email Address <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="email" name=""
|
||||
id="">
|
||||
|
||||
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Phone <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
|
||||
|
||||
<label class="text-16 pb-5" for="">Your Address <span
|
||||
class="text-brand">(Required)</span></label>
|
||||
|
||||
<input class="w-full mb-20 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
|
||||
<div class="flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">City</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">State/Region/Province</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="sm:block flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Level to Invest</label>
|
||||
<select class="w-full py-5" name="" id="">
|
||||
<option value="">Less than $20,000</option>
|
||||
<option value="">Less than $30,000</option>
|
||||
<option value="">Less than $40,000</option>
|
||||
<option value="">Less than $50,000</option>
|
||||
</select>
|
||||
|
||||
<!-- <select name="" id="franchise-invest">
|
||||
<option value="" selected hidden> Less than $10,000</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
|
||||
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Do you currently own a business?
|
||||
(Yes/No)</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<label class="text-14 pb-5" for=""> If yes, please describe your current
|
||||
business</label>
|
||||
|
||||
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="" id=""></textarea>
|
||||
|
||||
|
||||
<div class="sm:block flex gap-10 ">
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Preferred Franchise Location</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text"
|
||||
name="" id="">
|
||||
</div>
|
||||
<div class="w-full">
|
||||
<label class="text-14 pb-5" for="">Timeframe to Start</label>
|
||||
<select class="w-full py-5" name="" id="">
|
||||
<option value="">within 1 year</option>
|
||||
<option value="">After 1 year</option>
|
||||
|
||||
</select>
|
||||
<!-- <select name="" id="franchise-timeframe">
|
||||
<option value="" selected hidden> within 6 months</option>
|
||||
<option value=""></option>
|
||||
</select> -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="sm:w-full w-50percent">
|
||||
<label class="text-14 pb-5" for="">Do u already have an office setup ?</label>
|
||||
<input class="w-full mb-30 rounded-6 py-10 text-14 px-10" type="text" name=""
|
||||
id="">
|
||||
</div>
|
||||
|
||||
<label class="text-14 pb-5" for=""> Please add your bussiness portfolio website ,and
|
||||
let us know
|
||||
if you have any questions?</label>
|
||||
<textarea class="w-full mb-20 rounded-6 py-10 text-14 px-10" name="" id=""></textarea>
|
||||
|
||||
|
||||
<button class="button-hover px-20 py-10 bg-sec text-white text-16 border-0">Send
|
||||
Message</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex justify-center gap-30 pt-30 flex-wrap">
|
||||
<a class="flex items-center gap-10 border px-10 py-20" href="mailto:info@raffleseducare.com">
|
||||
<i class="fa-solid fa-envelope text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">info@raffleseducare.com</p>
|
||||
</a>
|
||||
<a class="flex items-center gap-10 border px-10 py-20" href="tel:info@+977-1234567890">
|
||||
<i class="fa-solid fa-phone text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">+977-1234567890</p>
|
||||
</a>
|
||||
<div class="flex items-center gap-10 border px-10 py-20">
|
||||
<i class="fa-solid fa-location-dot text-brand text-18"></i>
|
||||
<p class="text-white text-18 m-0 p-0">Kathmandu, Nepal</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
Reference in New Issue
Block a user