akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -0,0 +1,7 @@
@stack('content_start')
<div class="w-full lg:w-46 h-31 flex flex-col justify-center gap-12 px-6 lg:px-24 py-24 mt-12 lg:mt-0">
<div class="flex flex-col gap-4">
{!! $slot !!}
</div>
</div>
@stack('content_end')

View File

@ -0,0 +1,7 @@
@stack('footer_start')
<footer class="footer">
<div class="lg:absolute bottom-10 right-6 lg:right-24 flex flex-col sm:flex-row items-center justify-end text-sm font-light">
{{ trans('footer.powered') }}: <a href="{{ trans('footer.link') }}" target="_blank">{{ trans('footer.software') }}</a>
</div>
</footer>
@stack('footer_end')

View File

@ -0,0 +1,58 @@
@props([
'title',
])
<head>
@stack('head_start')
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8; charset=ISO-8859-1"/>
<title>{!! $title !!}</title>
<base href="{{ config('app.url') . '/' }}">
<x-layouts.pwa.head />
<!-- Favicon -->
<link rel="icon" href="{{ asset('public/img/favicon.ico') }}" type="image/png">
<!--Icons-->
<link rel="stylesheet" href="{{ asset('public/css/fonts/material-icons/style.css?v=' . version('short')) }}" type="text/css">
<!-- Font -->
<link rel="stylesheet" href="{{ asset('public/vendor/quicksand/css/quicksand.css?v=' . version('short')) }}" type="text/css">
<!-- Css -->
<link rel="stylesheet" href="{{ asset('public/css//third_party/swiper-bundle.min.css?v=' . version('short')) }}" type="text/css">
<link rel="stylesheet" href="{{ asset('public/css/app.css') }}" type="text/css">
@stack('css')
@stack('stylesheet')
@livewireStyles
<script type="text/javascript"><!--
var url = '{{ url("/" . company_id()) }}';
var app_url = '{{ config("app.url") }}';
//--></script>
@stack('js')
<script type="text/javascript"><!--
window.Laravel = <?php echo json_encode([
'csrfToken' => csrf_token(),
]); ?>;
var flash_notification = {!! (session()->has('flash_notification')) ? json_encode(session()->get('flash_notification')) : 'false' !!};
//--></script>
{{ session()->forget('flash_notification') }}
@stack('scripts')
@stack('head_end')
</head>

View File

@ -0,0 +1,17 @@
@stack('scripts_start')
<!-- <script type="text/javascript" src="{{ asset('public/akaunting-js/hotkeys.js') }}" defer></script> -->
@stack('body_css')
@stack('body_stylesheet')
@stack('body_js')
@stack('body_scripts')
@livewireScripts
<script src="{{ asset('public/vendor/alpinejs/alpine.min.js') }}"></script>
@stack('scripts_end')

View File

@ -0,0 +1,51 @@
@stack('slider_start')
<div class="hidden lg:block md:w-6/12 h-full flex-col h-fit">
<div class="swiper bg-cover bg-bottom bg-no-repeat h-screen py-24">
<div class="swiper-container h-full">
<div class="swiper-wrapper">
<div class="swiper-slide flex justify-center flex-col items-center">
<div style="width:450px; height:450px;">
<img src="{{ asset('public/img/auth/folder.png') }}" />
</div>
<h1 class="text-3xl text-black-400 font-bold">
{{ trans('auth.information.invoice') }}
</h1>
</div>
<div class="swiper-slide flex justify-center flex-col items-center">
<div style="width:450px; height:450px;">
<img src="{{ asset('public/img/auth/chart.png') }}" />
</div>
<h1 class="text-3xl text-black-400 font-bold">
{{ trans('auth.information.reports') }}
</h1>
</div>
<div class="swiper-slide flex justify-center flex-col items-center">
<div style="width:450px; height:450px;">
<img src="{{ asset('public/img/auth/client.png') }}" />
</div>
<h1 class="text-3xl text-black-400 font-bold">
{{ trans('auth.information.expense') }}
</h1>
</div>
<div class="swiper-slide flex justify-center flex-col items-center">
<div style="width:450px; height:450px;">
<img src="{{ asset('public/img/auth/layout.png') }}" />
</div>
<h1 class="text-3xl text-black-400 font-bold">
{{ trans('auth.information.customize') }}
</h1>
</div>
</div>
<div class="swiper-pagination w-full flex justify-center pb-12 gap-1"></div>
</div>
</div>
</div>
@stack('slider_end')