60 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" data-theme="light">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>@ViewData["Title"] - E-Bank Sampah</title>
 | |
| 
 | |
|     <!-- Meta tags untuk SEO -->
 | |
|     <meta name="description" content="Aplikasi E-Bank Sampah untuk mengelola sampah dan mendapatkan reward">
 | |
|     <meta name="keywords" content="bank sampah, recycle, environment, go green, sampah">
 | |
|     <meta name="author" content="E-Bank Sampah">
 | |
| 
 | |
|     <!-- Open Graph Meta Tags -->
 | |
|     <meta property="og:title" content="@ViewData[" Title"] - E-Bank Sampah">
 | |
|     <meta property="og:description" content="Kelola sampah Anda dengan mudah dan dapatkan reward!">
 | |
|     <meta property="og:type" content="website">
 | |
| 
 | |
|     <!-- Google Fonts -->
 | |
|     <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">
 | |
| 
 | |
|     <!-- Phosphor Icons -->
 | |
|     <link rel="stylesheet" type="text/css"
 | |
|         href="https://cdn.jsdelivr.net/npm/@@phosphor-icons/web@2.1.2/src/regular/style.css" />
 | |
|     <link rel="stylesheet" type="text/css"
 | |
|         href="https://cdn.jsdelivr.net/npm/@@phosphor-icons/web@2.1.2/src/fill/style.css" />
 | |
| 
 | |
|     <!-- Material Icon -->
 | |
|     <link rel="stylesheet"
 | |
|         href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
 | |
| 
 | |
| 
 | |
|     <!-- CSS -->
 | |
|     <link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
 | |
| </head>
 | |
| 
 | |
| <body class="min-h-dvh bg-gray-100 font-sans antialiased">
 | |
|     <div class="drawer md:drawer-open">
 | |
|         <input id="my-drawer-2" type="checkbox" class="drawer-toggle" />
 | |
|         <div class="drawer-content">
 | |
|             @await Html.PartialAsync("_Navbar")
 | |
|             <!-- Page content here -->
 | |
|             <main class="container mx-auto p-6">
 | |
|                 @RenderBody()
 | |
|             </main>
 | |
|         </div>
 | |
|         <div class="drawer-side z-50 lg:z-0">
 | |
|             @await Html.PartialAsync("_Sidebar")
 | |
|         </div>
 | |
|     </div>
 | |
| 
 | |
|     <!-- Scripts -->
 | |
|     <script src="~/js/site.js" asp-append-version="true"></script>
 | |
|     @await RenderSectionAsync("Scripts", required: false)
 | |
| </body>
 | |
| 
 | |
| </html> |