diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 05d2cb4..9493dcc 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -308,7 +308,8 @@ Responsive Codes .student-visa-section, .blogs-section, .why-et, -.blog-detail-section{ +.blog-detail-section, +.faq-section{ padding: 3rem 6rem; } .services-section .row, @@ -640,13 +641,13 @@ Responsive Codes } .studyabroad-banner-header h5{ color: #FFFFFF; + text-align: center; } .study-australia-desc h1, .student-visa-section h1, .why-et-header h1, - .student-visa-section h1, - +.faq-section h1, .why-et-header h1{ font-weight: 700; font-size: 40px; @@ -1180,6 +1181,19 @@ Responsive Codes top: 20%; 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{ background: #296AC7; diff --git a/public/frontend/images/fa-after.png b/public/frontend/images/fa-after.png new file mode 100644 index 0000000..35f46b2 Binary files /dev/null and b/public/frontend/images/fa-after.png differ diff --git a/public/frontend/images/faq-banner.png b/public/frontend/images/faq-banner.png new file mode 100644 index 0000000..089305a Binary files /dev/null and b/public/frontend/images/faq-banner.png differ diff --git a/public/frontend/images/faq-lists.png b/public/frontend/images/faq-lists.png new file mode 100644 index 0000000..e17fb9a Binary files /dev/null and b/public/frontend/images/faq-lists.png differ diff --git a/resources/views/faq.blade.php b/resources/views/faq.blade.php new file mode 100644 index 0000000..0924871 --- /dev/null +++ b/resources/views/faq.blade.php @@ -0,0 +1,41 @@ +@extends('layout.app') +@section('title') +FAQs + + + + + + +@endsection +@section('content') +
+ +
+

I have a Question

+
Know what’s trending overseas
+
+
+
+

Frequently Asked Questions

+
+
+

+ +

+
+
+ 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. +
+
+
+
+
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 4ef9248..e2b5b07 100644 --- a/routes/web.php +++ b/routes/web.php @@ -71,6 +71,9 @@ Route::get('/blogs', function () { Route::get('/blog-detail', function () { 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::group(['middleware'=>['auth']],function (){