Skip to content

Commit

Permalink
refactor layout
Browse files Browse the repository at this point in the history
  • Loading branch information
GesangPJ committed Jun 12, 2024
1 parent 2209eed commit c641028
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,21 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>

<!-- 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" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">

<link rel="icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">

<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])


<!--non jquery styling Regular Datatables CSS-->
<link href="https://cdn.datatables.net/2.0.8/css/dataTables.dataTables.min.css" rel="stylesheet">
<!-- Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<!-- DataTables CSS
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css">-->


<link rel="stylesheet" href="https://cdn.datatables.net/datetime/1.5.2/css/dataTables.dateTime.min.css">
<link href="https://cdn.datatables.net/buttons/3.0.2/css/buttons.dataTables.min.css" rel="stylesheet">
<link href="https://cdn.datatables.net/responsive/3.0.2/css/responsive.dataTables.min.css" rel="stylesheet">
Expand Down Expand Up @@ -85,9 +76,6 @@
border: 1px solid transparent;
/* border border-transparent */
}
/* Add padding to bottom border */
table.dataTable.no-footer {
border-bottom: 1px solid #e2e8f0;
Expand All @@ -103,12 +91,10 @@
/* bg-indigo-500 */
}
</style>

</head>
<body class="font-sans antialiased">
<div class="min-h-screen bg-gray-100">
@include('layouts.navigation')

<!-- Page Heading -->
@isset($header)
<header class="bg-white shadow">
Expand All @@ -117,7 +103,6 @@
</div>
</header>
@endisset

<!-- Page Content -->
<main>
{{ $slot }}
Expand Down

0 comments on commit c641028

Please sign in to comment.