This commit is contained in:
2025-09-25 03:03:31 +05:00
commit ae480cf2f6
2768 changed files with 1485826 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
@extends('web.themes.shella.layouts.app')
@section('content')
<main id="MainContent">
<div class="breadcrumbs mt-15">
<div class="container">
<ul class="list-unstyled d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<li><a href="/">{{ __('Home') }}</a></li>
<li><span>{{ __('FAQ') }}</span></li>
</ul>
</div>
</div>
<div class="container mb-60">
<h1 class="h3 mt-30 text-center">{{ __('Frequently asked questions') }}</h1>
<div class="rte">
<div class="container container--sm px-0">
{{-- <p class="mb-50 text-center">This is an approximate conversion table to help you find your size. If you
have already purchased an item by our brand, we recommend you select the same size as indicated on
its label.</p> --}}
</div>
</div>
<div id="theme-section-faqs" class="theme-section">
@switch(app()->getLocale())
@case('ru')
@include('web.themes.shella.pages.legals.langs.faq-ru')
@break
@case('en')
@include('web.themes.shella.pages.legals.langs.faq-en')
@break
@default
@include('web.themes.shella.pages.legals.langs.faq-tk')
@endswitch
</div>
</div>
</main>
@stop