forked from 2amjsouza/2am-qrcode-site-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
215 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
services: | ||
laravel.test: | ||
build: | ||
context: ./vendor/laravel/sail/runtimes/8.2 | ||
dockerfile: Dockerfile | ||
args: | ||
WWWGROUP: '${WWWGROUP}' | ||
image: sail-8.2/app | ||
extra_hosts: | ||
- 'host.docker.internal:host-gateway' | ||
ports: | ||
- '${APP_PORT:-80}:80' | ||
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}' | ||
environment: | ||
WWWUSER: '${WWWUSER}' | ||
LARAVEL_SAIL: 1 | ||
XDEBUG_MODE: '${SAIL_XDEBUG_MODE:-off}' | ||
XDEBUG_CONFIG: '${SAIL_XDEBUG_CONFIG:-client_host=host.docker.internal}' | ||
IGNITION_LOCAL_SITES_PATH: '${PWD}' | ||
volumes: | ||
- '.:/var/www/html' | ||
networks: | ||
- sail | ||
networks: | ||
sail: | ||
driver: bridge |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,7 @@ h1, h2, h3, h5, h6, span { | |
h4 { | ||
color: #1c74f8; | ||
} | ||
|
||
span, p { | ||
font-size: 14px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div {!! $attributes->merge(['class' => 'rounded-sm shadow-md shadow-black-900 p-5']) !!}> | ||
<div {!! $attributes->merge(['class' => 'bg-tbg-100 border border-tbg-50 rounded-md p-5']) !!}> | ||
{{ $slot }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<button {!! $attributes->merge(['class' => 'border border-white border-4 text-white active:bg-gray-200 hover:bg-white hover:text-black font-bold uppercase text-sm px-6 py-3 rounded-sm shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150']) !!} type="button"> | ||
<button {!! $attributes->merge(['class' => 'text-white text-center p-2 w-full my-3 border-2 border-rose-600 rounded hover:text-black hover:bg-white transition-1.5' | ||
]) !!} type="button"> | ||
{{ $slot }} | ||
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
<button {!! $attributes->merge(['class' => 'bg-red-500 text-white active:bg-red-600 font-bold uppercase text-sm px-6 py-3 rounded shadow hover:shadow-lg hover:bg-red-700 outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150']) !!} type="button"> | ||
<button {!! $attributes->merge([ | ||
'class' => 'bg-tred rounded text-white active:bg-red-600 | ||
font-bold text-sm px-6 py-3 hover:shadow-2xl | ||
hover:shadow-tred hover:shadow-inner mr-1 | ||
mb-1 ease-linear transition-all duration-150 | ||
h-8 w-full border-2 border-white' | ||
]) !!} | ||
type="button" | ||
> | ||
{{ $slot }} | ||
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
<div class="mb-2 mt-2 pt-0"> | ||
<input type="text" placeholder="" {!! $attributes->merge(['class' => 'px-3 py-3 placeholder-slate-300 text-slate-600 relative bg-white bg-white rounded text-sm border-0 shadow outline-none focus:outline-none focus:ring w-full']) !!}/> | ||
<div class="mb-2 mt-2 mb-3 pt-0"> | ||
<input type="text" placeholder="" {!! $attributes->merge([ | ||
'class' => 'px-3 py-3 placeholder-slate-300 text-slate-600 | ||
relative bg-white bg-white rounded text-sm border-0 shadow | ||
outline-none focus:outline-none focus:ring w-full h-8' | ||
]) | ||
!!}/> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<div class="mb-2 mt-2 pt-0"> | ||
<input type="file" placeholder="" {!! $attributes->merge(['class' => 'px-3 py-3 placeholder-slate-300 text-slate-600 relative bg-white bg-white rounded text-sm border-0 shadow outline-none focus:outline-none focus:ring w-full']) !!}/> | ||
<input type="file" placeholder="" {!! $attributes->merge([ | ||
'class' => 'px-3 py-2 placeholder-slate-300 text-slate-600 relative | ||
bg-white bg-white rounded text-sm border-0 shadow outline-none | ||
focus:outline-none focus:ring w-full h-10' | ||
]) !!}/> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div {{ $attributes->merge(['class' => 'flex flex-row items-center content-center cursor-pointer bg-gray-700 border border-black text-white p-2 hover:text-yellow-300 hover:bg-gray-800 active:text-yellow-400']) }}> | ||
<div {{ $attributes->merge(['class' => 'flex flex-row justify-center items-center p-2 cursor-pointer bg-transparent text-white hover:text-yellow-500 active:text-yellow-400']) }}> | ||
{{ $slot }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<div> | ||
<!--<div class="grid grid-cols-2 mt-5">--> | ||
<!--<x-menu-item wire:click="toggleOption({{\App\Enum\OptionsEnum::Colors->value}})" class="flex flex-row {{$activeOption == \App\Enum\OptionsEnum::Colors->value ? 'text-yellow-300 bg-gray-800' : ''}}"> | ||
<x-icons.colors /> | ||
<div class="ml-1"> | ||
Colors | ||
</div> | ||
</x-menu-item> | ||
<x-menu-item wire:click="toggleOption({{\App\Enum\OptionsEnum::Margin->value}})" class="{{$activeOption == \App\Enum\OptionsEnum::Margin->value ? 'text-yellow-300 bg-gray-800' : ''}}"> | ||
<x-icons.screen /> | ||
<div class="ml-1"> | ||
Margin | ||
</div> | ||
</x-menu-item> | ||
<x-menu-item wire:click="toggleOption({{\App\Enum\OptionsEnum::Label->value}})" class="flex flex-row {{$activeOption == \App\Enum\OptionsEnum::Label->value ? 'text-yellow-300 bg-gray-800' : ''}}"> | ||
<x-icons.label /> | ||
<div class="ml-1"> | ||
Label | ||
</div> | ||
</x-menu-item> | ||
<x-menu-item wire:click="toggleOption({{\App\Enum\OptionsEnum::Logo->value}})" class="flex flex-row {{$activeOption == \App\Enum\OptionsEnum::Logo->value ? 'text-yellow-300 bg-gray-800' : ''}}"> | ||
<x-icons.image /> | ||
<div class="ml-1"> | ||
Logo | ||
</div> | ||
</x-menu-item>--> | ||
<select wire:model.lazy="activeOption" class="px-3 placeholder-slate-300 text-slate-600 | ||
relative bg-white bg-white rounded text-sm border-0 shadow | ||
outline-none focus:outline-none focus:ring w-full h-8 mt-2"> | ||
<option value="{{null}}"> Select </option> | ||
@foreach(\App\Enum\OptionsEnum::cases() as $option) | ||
<option value="{{$option->value}}"> {{$option->name}} </option> | ||
@endforeach | ||
</select> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div> | ||
<h6 class="text-xl mb-5 font-bold"> Text Format </h6> | ||
<h6 class="text-xl pb-5 mt-0 pt-0 font-bold"> Text Format </h6> | ||
|
||
<span> Text </span> | ||
<x-inputs.text wire:model="form.text"/> | ||
<x-error :for="'form.text'"/> | ||
|
||
<x-inputs.success-button wire:click="create" class="mt-2"> | ||
<x-inputs.success-button wire:click="create" class="mt-3"> | ||
Create QR Code | ||
</x-inputs.success-button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.