|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
6 | | - <title>Bibirioni Water Billing</title> |
| 6 | + <title>{{config('app.name','Acacia')}}</title> |
7 | 7 | <x-core::css-header/> |
8 | 8 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.2/tailwind.min.css"> |
9 | 9 | </head> |
10 | 10 | <body> |
11 | 11 |
|
12 | 12 | <!-- Section 1 --> |
13 | | -<section class="h-screen w-full px-3 antialiased bg-primary lg:px-6"> |
| 13 | +<section class="h-screen w-full px-3 antialiased bg-gray-800 text-primary lg:px-6"> |
14 | 14 | <div class="mx-auto max-w-7xl"> |
15 | 15 | <nav class="flex items-center w-full h-24 select-none" x-data="{ showMenu: false }"> |
16 | 16 | <div class="relative flex flex-wrap items-center justify-between w-full h-24 mx-auto font-medium md:justify-center"> |
17 | 17 | <x-core::logo/> |
18 | 18 | <div class="fixed top-0 left-0 z-40 items-center hidden w-full h-full p-3 text-xl bg-gray-900 bg-opacity-50 md:text-sm lg:text-base md:w-3/4 md:bg-transparent md:p-0 md:relative md:flex" :class="{'flex': showMenu, 'hidden': !showMenu }"> |
19 | 19 | <div class="flex-col w-full h-auto h-full overflow-hidden bg-white rounded-lg select-none md:bg-transparent md:rounded-none md:relative md:flex md:flex-row md:overflow-auto"> |
20 | | - <div class="flex flex-col items-center justify-center w-full h-full mt-12 text-center text-indigo-700 md:text-indigo-200 md:w-2/3 md:mt-0 md:flex-row md:items-center"> |
| 20 | + <div class="flex flex-col items-center justify-center w-full h-full mt-12 text-center text-primary md:text-indigo-200 md:w-2/3 md:mt-0 md:flex-row md:items-center"> |
21 | 21 | <a href="{{route('dashboard')}}" class="inline-block px-4 py-2 mx-2 font-medium text-left text-indigo-700 md:text-white md:px-0 lg:mx-3 md:text-center">Dashboard</a> |
22 | 22 | <a href="{{route('acacia.backend.index')}}" class="inline-block px-0 px-4 py-2 mx-2 font-medium text-left md:px-0 hover:text-indigo-800 md:hover:text-white lg:mx-3 md:text-center">Backend</a> |
23 | 23 | <a href="#" class="inline-block px-0 px-4 py-2 mx-2 font-medium text-left md:px-0 hover:text-indigo-800 md:hover:text-white lg:mx-3 md:text-center">Contact</a> |
24 | 24 | </div> |
25 | 25 | <div class="flex flex-col items-center justify-end w-full h-full pt-4 md:w-1/3 md:flex-row md:py-0"> |
26 | | - <a href="#_" class="w-full pl-6 mr-0 text-indigo-200 hover:text-white md:pl-0 md:mr-3 lg:mr-5 md:w-auto">Sign In</a> |
27 | | - <a href="#_" class="inline-flex items-center justify-center px-4 py-2 mr-1 text-base font-medium leading-6 text-indigo-600 whitespace-no-wrap transition duration-150 ease-in-out bg-white border border-transparent rounded-full hover:bg-white focus:outline-none focus:border-indigo-700 focus:shadow-outline-indigo active:bg-indigo-700">Sign Up</a> |
| 26 | + <a href="{{route('register')}}" class="w-full pl-6 mr-0 text-primary hover:text-white md:pl-0 md:mr-3 lg:mr-5 md:w-auto">Register</a> |
| 27 | + <a href="{{route('login')}}" class="inline-flex items-center justify-center px-4 py-2 mr-1 text-base font-medium leading-6 whitespace-no-wrap transition duration-150 ease-in-out bg-primary border border-transparent rounded-full hover:bg-white focus:outline-none focus:border-indigo-700 focus:shadow-outline-indigo active:bg-indigo-700">Login</a> |
| 28 | + |
28 | 29 | </div> |
29 | 30 | </div> |
30 | 31 | </div> |
|
40 | 41 | </nav> |
41 | 42 | <div class="container py-32 mx-auto text-center sm:px-4"> |
42 | 43 |
|
43 | | - <h1 class="text-4xl font-extrabold leading-10 tracking-tight text-white sm:text-5xl sm:leading-none md:text-6xl xl:text-7xl"><span class="block">Bibirioni</span> |
44 | | - <span class="relative inline-block mt-3 text-transparent text-white">Water Billing</span></h1> |
45 | | - <div class="max-w-lg mx-auto my-6 text-sm text-center text-indigo-200 md:mt-12 sm:text-base md:max-w-xl md:text-lg xl:text-xl">Don't sweat calculating and sending bills! We sweat for you.</div> |
| 44 | + <h1 class="text-4xl font-extrabold leading-10 tracking-tight text-white sm:text-5xl sm:leading-none md:text-6xl xl:text-7xl"><span class="block">{{config('app.name')}}</span> |
| 45 | + <span class="relative inline-block mt-3 text-primary">Frontend</span></h1> |
| 46 | + <div class="max-w-lg mx-auto my-6 text-sm text-center text-indigo-200 md:mt-12 sm:text-base md:max-w-xl md:text-lg xl:text-xl">Your tagline can never be worse.</div> |
46 | 47 | <a href="{{route('dashboard')}}" class="text-center rounded-full bg-gray-900 text-white font-black text-lg p-3 px-4 mt-4"> |
47 | 48 | Get Started |
48 | 49 | </a> |
|
0 commit comments