Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature components #151

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,398 changes: 5,397 additions & 1 deletion public/themes/bimbala/css/app.css

Large diffs are not rendered by default.

6,278 changes: 6,277 additions & 1 deletion public/themes/bimbala/js/app.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/themes/bimbala/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=31044e78bdf2a1f38951",
"/css/app.css": "/css/app.css?id=2b056b57e1d0ed6163fc"
"/js/app.js": "/js/app.js?id=6c1269b007aff962e5d5",
"/css/app.css": "/css/app.css?id=eff9ac3448f41fb84260"
}
20 changes: 20 additions & 0 deletions resources/views/themes/bimbala/components/two-panel.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@props(['title', 'subtitle', 'image', 'description'])

<section class="py-16">
<div class="flex flex-col px-8 mx-auto space-y-12 max-w-7xl xl:px-12">
<div class="relative">
<h2 class="w-full text-3xl font-bold text-center sm:text-4xl md:text-5xl">{{ $title }}</h2>
<p class="w-full py-8 mx-auto -mt-2 text-lg text-center intro sm:max-w-3xl">{{ $subtitle }}</p>
</div>
<div class="flex flex-col mb-12 animated fadeIn sm:flex-row">
<div class="flex items-center mb-8 sm:w-1/2 md:w-6/12 sm:order-last">
<img class="rounded-lg" src="{{ asset($image) }}" loading="lazy" alt="Gathering your client feedback">
</div>
<div class="flex flex-col justify-center mt-5 mb-8 md:mt-0 sm:w-1/2 md:w-6/12 sm:pr-16">
<p class="mb-2 text-sm font-semibold leading-none text-purple-700 uppercase">Gather your feedback</p>
<h3 class="mt-2 text-2xl md:text-4xl">An easy way to collect and organize feedback</h3>
<p class="mt-5 text-lg text md:">{{ $description }}</p>
MrGKanev marked this conversation as resolved.
Show resolved Hide resolved
</div>
</div>
</div>
</section>
5 changes: 4 additions & 1 deletion resources/views/themes/bimbala/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,10 @@ class="p-3 md:p-6 w-full"
</section>
{{--End of Weekly mails --}}

@component('theme::components.two-panel', ['title' => 'Welcome to Bimbala', 'subtitle' => 'Discover the power of feedback', 'image' => 'images/feedback.png', 'description' => 'Bimbala is an easy-to-use platform that allows you to collect and organize feedback from your clients. With Bimbala, you can gather valuable insights and make data-driven decisions to improve your products and services.'])
@endcomponent
{{-- Features with images --}}
<section class="py-16">
<section class="py-16">
<div class="flex flex-col px-8 mx-auto space-y-12 max-w-7xl xl:px-12">
<div class="relative">
<h2 class="w-full text-3xl font-bold text-center sm:text-4xl md:text-5xl"> Level Up Your Support</h2>
Expand Down Expand Up @@ -240,6 +242,7 @@ class="p-3 md:p-6 w-full"
</div>
</div>
</section>

{{-- End Features with images --}}
{{-- Integrations --}}
<section class="py-12 sm:py-16 text-gray-700">
Expand Down