diff --git a/public/images/2am_beyond_software.png b/public/images/2am_beyond_software.png new file mode 100644 index 0000000..6499001 Binary files /dev/null and b/public/images/2am_beyond_software.png differ diff --git a/public/images/about/work-with-us-dots.svg b/public/images/about/work-with-us-dots.svg new file mode 100644 index 0000000..881c310 --- /dev/null +++ b/public/images/about/work-with-us-dots.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/images/about/work-with-us-dots2.svg b/public/images/about/work-with-us-dots2.svg new file mode 100644 index 0000000..057e7f9 --- /dev/null +++ b/public/images/about/work-with-us-dots2.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/images/betterProductsBg.svg b/public/images/betterProductsBg.svg new file mode 100644 index 0000000..df244b4 --- /dev/null +++ b/public/images/betterProductsBg.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/footer_banner_bg.png b/public/media/footer_banner_bg.png new file mode 100644 index 0000000..5688af4 Binary files /dev/null and b/public/media/footer_banner_bg.png differ diff --git a/resources/css/app.css b/resources/css/app.css index e6e4c70..fe03f24 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -18,3 +18,8 @@ border-radius: 100%; margin-right: 5px; } + +.pickr .pcr-button { + width: 22px; + height: 22px; +} diff --git a/resources/js/app.js b/resources/js/app.js index 4f695b1..7eafd47 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -11,3 +11,21 @@ window.addEventListener("scroll", (event) => { document.getElementsByClassName('header')[0].classList.remove('visible'); } }); + +let parseLinks = () => { + let links = document.querySelectorAll('a'); + + links.forEach((el, key) => { + let href = links.item(key).getAttribute('href') + + if (href === null || href === undefined || href[0] !== '/') return; + + href = 'https://2am.tech' + href + links.item(key).setAttribute('href', href) + + }) +} + +window.addEventListener('load', () => { + parseLinks() +}) diff --git a/resources/views/components/icons/chev-down.blade.php b/resources/views/components/icons/chev-down.blade.php new file mode 100644 index 0000000..e405d42 --- /dev/null +++ b/resources/views/components/icons/chev-down.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/components/icons/chev-up.blade.php b/resources/views/components/icons/chev-up.blade.php new file mode 100644 index 0000000..59c44b3 --- /dev/null +++ b/resources/views/components/icons/chev-up.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/components/inputs/color-picker.blade.php b/resources/views/components/inputs/color-picker.blade.php index 8aecce2..d3aec5d 100644 --- a/resources/views/components/inputs/color-picker.blade.php +++ b/resources/views/components/inputs/color-picker.blade.php @@ -6,6 +6,7 @@ theme: 'nano', closeWithKey: 'Enter', default: colorField, + appClass: 'color-picker-widget', swatches: [ 'rgba(244, 67, 54, 1)', 'rgba(233, 30, 99, 1)', @@ -49,10 +50,10 @@ }) ">
-
+
{{ $this->{$model} }}
-
+
- diff --git a/resources/views/components/inputs/select.blade.php b/resources/views/components/inputs/select.blade.php index 84e3a77..b0e5aef 100644 --- a/resources/views/components/inputs/select.blade.php +++ b/resources/views/components/inputs/select.blade.php @@ -1,6 +1,6 @@
merge([ 'class' => 'px-3 py-3 placeholder-slate-300 text-slate-600 - relative bg-white bg-white rounded text-sm border-0 shadow + relative bg-white bg-white rounded text-sm shadow outline-none focus:outline-none focus:ring w-full h-10 + border border-gray ', 'placeholder' => '', ]) diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php index fce883a..ec2b133 100644 --- a/resources/views/components/layout.blade.php +++ b/resources/views/components/layout.blade.php @@ -62,47 +62,103 @@ function gtag() { @vite('resources/css/app.css') @vite('resources/css/2am.css') @vite('resources/js/app.js') +
+
@@ -124,45 +180,90 @@ function gtag() {
+
{{$slot}} @@ -325,6 +427,5 @@ function gtag() {
- diff --git a/resources/views/components/options.blade.php b/resources/views/components/options.blade.php index e35a7af..93b8da7 100644 --- a/resources/views/components/options.blade.php +++ b/resources/views/components/options.blade.php @@ -1,14 +1,27 @@ -
-
+
+ + -
-
+ + + -
-
+ + + -
-
+ + + -
+
diff --git a/resources/views/components/options/swag.blade.php b/resources/views/components/options/swag.blade.php new file mode 100644 index 0000000..ae25a18 --- /dev/null +++ b/resources/views/components/options/swag.blade.php @@ -0,0 +1,19 @@ +
+
+ + + {!! $title !!} + +
+ +
+
+ +
+
+
+
+ {{ $slot }} +
+
+
diff --git a/resources/views/livewire/qr_code_builder.blade.php b/resources/views/livewire/qr_code_builder.blade.php index a294d07..da1c1ce 100644 --- a/resources/views/livewire/qr_code_builder.blade.php +++ b/resources/views/livewire/qr_code_builder.blade.php @@ -18,6 +18,8 @@ class="{{$format->value === $activeFormat ? 'text-tred border-b hover:border-b-g

+ +
@@ -27,27 +29,4 @@ class="{{$format->value === $activeFormat ? 'text-tred border-b hover:border-b-g
-
-
- - - @foreach($this->formats as $format) - - @endforeach - -
-
- -
-
- -
-

- Customize your QR -

- - -
diff --git a/resources/views/livewire/qr_code_component.blade.php b/resources/views/livewire/qr_code_component.blade.php index 40f7fa0..a75cbf1 100644 --- a/resources/views/livewire/qr_code_component.blade.php +++ b/resources/views/livewire/qr_code_component.blade.php @@ -1,12 +1,12 @@
-
+
-
+
Download PNG diff --git a/resources/views/qrcode/generator.blade.php b/resources/views/qrcode/generator.blade.php index 79af883..0317af8 100644 --- a/resources/views/qrcode/generator.blade.php +++ b/resources/views/qrcode/generator.blade.php @@ -2,7 +2,7 @@

- QR Code Generator demo + QR Code Generator

@@ -10,13 +10,15 @@
-
-
+
+
- This is a DEMO to the Open Source Library + This is an online DEMO of the qr code library
+
+
2amigos/qrcode-library @@ -36,6 +38,19 @@ class="text-tred hover:text-black transition duration-150 font-bold flex">
-
+
+ +
+