Skip to content

Commit 36cd1e1

Browse files
authored
Merge pull request #40 from savannabits/1.0-dev
Improvement in the Core Welcome Page:
2 parents 51e924f + bc9397e commit 36cd1e1

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

publishes/acacia/Core/Resources/views/welcome.blade.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,29 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Bibirioni Water Billing</title>
6+
<title>{{config('app.name','Acacia')}}</title>
77
<x-core::css-header/>
88
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.2/tailwind.min.css">
99
</head>
1010
<body>
1111

1212
<!-- 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">
1414
<div class="mx-auto max-w-7xl">
1515
<nav class="flex items-center w-full h-24 select-none" x-data="{ showMenu: false }">
1616
<div class="relative flex flex-wrap items-center justify-between w-full h-24 mx-auto font-medium md:justify-center">
1717
<x-core::logo/>
1818
<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 }">
1919
<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">
2121
<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>
2222
<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>
2323
<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>
2424
</div>
2525
<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+
2829
</div>
2930
</div>
3031
</div>
@@ -40,9 +41,9 @@
4041
</nav>
4142
<div class="container py-32 mx-auto text-center sm:px-4">
4243

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>
4647
<a href="{{route('dashboard')}}" class="text-center rounded-full bg-gray-900 text-white font-black text-lg p-3 px-4 mt-4">
4748
Get Started
4849
</a>

0 commit comments

Comments
 (0)