[add] faqs section

et#4
tribikram 2 years ago
parent a9c6c33a66
commit db016911bb
  1. 20
      public/frontend/css/style.css
  2. BIN
      public/frontend/images/fa-after.png
  3. BIN
      public/frontend/images/faq-banner.png
  4. BIN
      public/frontend/images/faq-lists.png
  5. 41
      resources/views/faq.blade.php
  6. 3
      routes/web.php

@ -308,7 +308,8 @@ Responsive Codes
.student-visa-section, .student-visa-section,
.blogs-section, .blogs-section,
.why-et, .why-et,
.blog-detail-section{ .blog-detail-section,
.faq-section{
padding: 3rem 6rem; padding: 3rem 6rem;
} }
.services-section .row, .services-section .row,
@ -640,13 +641,13 @@ Responsive Codes
} }
.studyabroad-banner-header h5{ .studyabroad-banner-header h5{
color: #FFFFFF; color: #FFFFFF;
text-align: center;
} }
.study-australia-desc h1, .study-australia-desc h1,
.student-visa-section h1, .student-visa-section h1,
.why-et-header h1, .why-et-header h1,
.student-visa-section h1, .student-visa-section h1,
.faq-section h1,
.why-et-header h1{ .why-et-header h1{
font-weight: 700; font-weight: 700;
font-size: 40px; font-size: 40px;
@ -1180,6 +1181,19 @@ Responsive Codes
top: 20%; top: 20%;
left: 2%; left: 2%;
} }
.faq-section .accordion-button:focus{
box-shadow: none;
}
.faq-section .accordion-button::after{
background-image: url('../images/fa-after.png');
background-size: 1.5rem;
width: 1.5rem;
height: 1.5rem;
}
.faq-section .accordion-button:not(.collapsed){
background-color: unset;
border-bottom: 1.5px solid #E0DEDE;
}
/* Footer Css */ /* Footer Css */
.footer{ .footer{
background: #296AC7; background: #296AC7;

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 732 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

@ -0,0 +1,41 @@
@extends('layout.app')
@section('title')
<title>FAQs</title>
<meta name="description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad.">
<meta name="robots" content="index, follow" />
<meta property="og:url" content="" />
<meta property="og:image" content="{{url('frontend/images/banner.png')}}"/>
<meta property="og:title" content="ET-Visas"/>
<meta property="og:description" content="ET Education and Visa Services, presented by Extratech, is an adept provider of excellent education consultation, information, and visa guidance solution to students seeking schooling abroad."/>
@endsection
@section('content')
<section class="abroad-banner-section" style="background: url('frontend/images/faq-banner.png')">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Study Abroad</li>
</ol>
</nav>
<div class="studyabroad-banner-header">
<h1>I have a Question</h1>
<h5>Know what’s trending overseas</h5>
</div>
</section>
<section class="faq-section">
<h1>Frequently Asked Questions</h1>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="heading">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse" aria-expanded="false" aria-controls="collapse">
<img src="{{url('frontend/images/faq-lists.png')}}" class="mx-2" alt=""> How can ET Education help me while I apply a visa to study in Australia?
</button>
</h2>
<div id="collapse" class="accordion-collapse collapse" aria-labelledby="heading" data-bs-parent="#accordionExample">
<div class="accordion-body">
We have a team of experienced education consultants and Registered Migration Agents with a combined experience of 50+ years. We will assist you with finding the right visa type and lodging your application throughout the Australia study visa process.
</div>
</div>
</div>
</div>
</section>
@endsection

@ -71,6 +71,9 @@ Route::get('/blogs', function () {
Route::get('/blog-detail', function () { Route::get('/blog-detail', function () {
return view('blog-detail'); return view('blog-detail');
}); });
Route::get('/faq', function () {
return view('faq');
});
Route::post('image-upload', [ImageUploadController::class, 'storeImage'])->name('image.upload'); //upload image in CkEditor Route::post('image-upload', [ImageUploadController::class, 'storeImage'])->name('image.upload'); //upload image in CkEditor
Route::group(['middleware'=>['auth']],function (){ Route::group(['middleware'=>['auth']],function (){

Loading…
Cancel
Save