feat/factory_creation (#1)
Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
This commit was merged in pull request #1.
This commit is contained in:
@@ -6,7 +6,10 @@
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<title>{{ config('app.name', 'Laravel') }}</title>
|
||||
|
||||
@include('partials/favicon')
|
||||
@vite(['resources/scss/app.scss'])
|
||||
@livewireStyles
|
||||
@yield('additional_headers')
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.bunny.net">
|
||||
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
||||
@@ -14,17 +17,33 @@
|
||||
<!-- Scripts -->
|
||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||
</head>
|
||||
<body class="font-sans text-gray-900 antialiased">
|
||||
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900">
|
||||
<body class="antialiased">
|
||||
@include('partials/preloader')
|
||||
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0">
|
||||
<div>
|
||||
<a href="/">
|
||||
<x-application-logo class="w-20 h-20 fill-current text-gray-500" />
|
||||
<x-application-logo class="w-20 h-20 fill-current" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg">
|
||||
<div class="authbox w-full sm:max-w-md mt-6 px-6 py-4 shadow-md overflow-hidden sm:rounded-lg">
|
||||
{{ $slot }}
|
||||
</div>
|
||||
</div>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.nice-select.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/modernizer.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/slick.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/bootstrap.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/waypoint.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/js.cookie.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/count-down.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/counter-up.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/isotop.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/imageloaded.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/aos.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.custom-file-input.js"></script>
|
||||
@livewireScriptConfig
|
||||
@vite(['resources/js/app.js'])
|
||||
</body>
|
||||
</html>
|
||||
|
||||
42
site/resources/views/layouts/master.blade.php
Normal file
42
site/resources/views/layouts/master.blade.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<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 name="csrf-token" content="{{ csrf_token() }}">
|
||||
@if(View::hasSection('page-title'))
|
||||
<title>.: @yield('page-title') - No Agenda Art Generator :.</title>
|
||||
@else
|
||||
<title>.: No Agenda Art Generator :.</title>
|
||||
@endif
|
||||
@include('partials/favicon')
|
||||
@vite(['resources/scss/app.scss'])
|
||||
@livewireStyles
|
||||
@yield('additional_headers')
|
||||
</head>
|
||||
<body{!! Session::get('preferred_theme') === 'light' ? ' class="theme-light"' : '' !!} data-preferred_theme="{!! Session::get('preferred_theme') !!}">
|
||||
@include('partials/preloader')
|
||||
@include('partials/nav/head')
|
||||
|
||||
@yield('page-top')
|
||||
@yield('page-content')
|
||||
|
||||
@include('partials.footer.section')
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.nice-select.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/modernizer.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/slick.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/bootstrap.min.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/waypoint.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/js.cookie.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/count-down.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/counter-up.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/isotop.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/imageloaded.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/aos.js"></script>
|
||||
<script src="//{{ config('app.static_asset_url') }}/dist/vendor/js/jquery.custom-file-input.js"></script>
|
||||
@livewireScriptConfig
|
||||
@vite(['resources/js/app.js'])
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,16 +1,16 @@
|
||||
<nav x-data="{ open: false }" class="bg-white dark:bg-gray-800 border-b border-gray-100 dark:border-gray-700">
|
||||
<!-- Primary Navigation Menu -->
|
||||
{{-- Primary Navigation Menu --}}
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="flex justify-between h-16">
|
||||
<div class="flex">
|
||||
<!-- Logo -->
|
||||
{{-- Logo --}}
|
||||
<div class="shrink-0 flex items-center">
|
||||
<a href="{{ route('dashboard') }}">
|
||||
<x-application-logo class="block h-9 w-auto fill-current text-gray-800 dark:text-gray-200" />
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Navigation Links -->
|
||||
{{-- Navigation Links --}}
|
||||
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
|
||||
<x-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
||||
{{ __('Dashboard') }}
|
||||
@@ -18,7 +18,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Settings Dropdown -->
|
||||
{{-- Settings Dropdown --}}
|
||||
<div class="hidden sm:flex sm:items-center sm:ml-6">
|
||||
<x-dropdown align="right" width="48">
|
||||
<x-slot name="trigger">
|
||||
@@ -38,7 +38,7 @@
|
||||
{{ __('Profile') }}
|
||||
</x-dropdown-link>
|
||||
|
||||
<!-- Authentication -->
|
||||
{{-- Authentication --}}
|
||||
<form method="POST" action="{{ route('logout') }}">
|
||||
@csrf
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
</x-dropdown>
|
||||
</div>
|
||||
|
||||
<!-- Hamburger -->
|
||||
{{-- Hamburger --}}
|
||||
<div class="-mr-2 flex items-center sm:hidden">
|
||||
<button @click="open = ! open" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 dark:text-gray-500 hover:text-gray-500 dark:hover:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-900 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-900 focus:text-gray-500 dark:focus:text-gray-400 transition duration-150 ease-in-out">
|
||||
<svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24">
|
||||
@@ -64,7 +64,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Responsive Navigation Menu -->
|
||||
{{-- Responsive Navigation Menu --}}
|
||||
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-3 space-y-1">
|
||||
<x-responsive-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
|
||||
@@ -72,7 +72,7 @@
|
||||
</x-responsive-nav-link>
|
||||
</div>
|
||||
|
||||
<!-- Responsive Settings Options -->
|
||||
{{-- Responsive Settings Options --}}
|
||||
<div class="pt-4 pb-1 border-t border-gray-200 dark:border-gray-600">
|
||||
<div class="px-4">
|
||||
<div class="font-medium text-base text-gray-800 dark:text-gray-200">{{ Auth::user()->name }}</div>
|
||||
|
||||
Reference in New Issue
Block a user