|
| 1 | +<div class="mt-12"> |
| 2 | + <footer class="text-gray-600 border border-t body-font bg-white"> |
| 3 | + <div |
| 4 | + class=" |
| 5 | + container |
| 6 | + py-12 |
| 7 | + mx-auto |
| 8 | + flex |
| 9 | + md:items-center |
| 10 | + lg:items-start |
| 11 | + w-full |
| 12 | + " |
| 13 | + > |
| 14 | + <div |
| 15 | + class="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left" |
| 16 | + > |
| 17 | + <a |
| 18 | + class=" |
| 19 | + flex |
| 20 | + title-font |
| 21 | + font-medium |
| 22 | + items-center |
| 23 | + md:justify-start |
| 24 | + justify-center |
| 25 | + " |
| 26 | + > |
| 27 | + <img class="w-10 h-10 p-2 bg-white rounded-full" src="{{ asset('vendor/avored/images/logo_only.svg') }}" alt="{{ __('system.avored_ecommerce') }}" /> |
| 28 | + <span class="ml-3 text-xl ">{{ __('system.avored') }}</span> |
| 29 | + </a> |
| 30 | + <p class="mt-2 text-sm "> |
| 31 | + {{ __('system.avored_tagline') }} |
| 32 | + </p> |
| 33 | + </div> |
| 34 | + <div |
| 35 | + class=" |
| 36 | + flex-grow flex flex-wrap |
| 37 | + md:pl-20 |
| 38 | + -mb-10 |
| 39 | + md:mt-0 |
| 40 | + mt-10 |
| 41 | + md:text-left |
| 42 | + text-center |
| 43 | + " |
| 44 | + > |
| 45 | + <div v-if="!fetching" class="lg:w-1/4 md:w-1/2 w-full px-4"> |
| 46 | + <h2 |
| 47 | + class=" |
| 48 | + font-semibold |
| 49 | + tracking-widest |
| 50 | + text-md |
| 51 | + mb-3 |
| 52 | + " |
| 53 | + > |
| 54 | + {{ __('system.categories') }} |
| 55 | + </h2> |
| 56 | + <nav class="list-none mb-10"> |
| 57 | + @foreach ($categories as $category) |
| 58 | + <li> |
| 59 | + <a href="#" class="self-center hover:text-red-500"> |
| 60 | + {{ $category->name }} |
| 61 | + </a> |
| 62 | + </li> |
| 63 | + @endforeach |
| 64 | + </nav> |
| 65 | + </div> |
| 66 | + <div class="lg:w-3/4 md:w-1/2 w-full px-4"> |
| 67 | + <h5 class=" tracking-widest font-semibold">{{ __('system.signup_for_our_newsletter') }}</h5> |
| 68 | + <div class="mt-5 flex w-full"> |
| 69 | + <div class="lg:w-2/4 md:w-3/4"> |
| 70 | + <input |
| 71 | + v-model="subscriberEmail" |
| 72 | + :placeholder="t('system.enter_your_email_address')" |
| 73 | + type="email" |
| 74 | + class="w-full px-4 py-3 ring-gray-300 ring-1 focus:ring-red-500 focus:outline-none rounded shadow-sm appearance-none text-gray-700" |
| 75 | + /> |
| 76 | + </div> |
| 77 | + <button class="ml-3 px-4 py-3 ring-1 ring-red-500 shadow-lg text-white font-semibold bg-red-500 rounded-md "> |
| 78 | + {{ __('system.notify_me') }} |
| 79 | + </button> |
| 80 | + </div> |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + <div class="bg-red-500"> |
| 85 | + <div |
| 86 | + class=" |
| 87 | + container |
| 88 | + mx-auto |
| 89 | + py-4 |
| 90 | + px-5 |
| 91 | + flex flex-wrap flex-col |
| 92 | + sm:flex-row |
| 93 | + " |
| 94 | + > |
| 95 | + <p class="text-white text-sm text-center sm:text-left"> |
| 96 | + © {{ date('Y') }} — |
| 97 | + <a |
| 98 | + href="https://www.avored.com/" |
| 99 | + rel="noopener noreferrer" |
| 100 | + class="ml-1" |
| 101 | + target="_blank" |
| 102 | + >© {{ __('system.avored_ecommerce') }}</a |
| 103 | + > |
| 104 | + </p> |
| 105 | + <span |
| 106 | + class=" |
| 107 | + inline-flex |
| 108 | + sm:ml-auto sm:mt-0 |
| 109 | + mt-2 |
| 110 | + justify-center |
| 111 | + sm:justify-start |
| 112 | + " |
| 113 | + > |
| 114 | + <a class="text-gray-200" href="https://www.facebook.com/avored" target="_blank"> |
| 115 | + <svg |
| 116 | + fill="currentColor" |
| 117 | + stroke-linecap="round" |
| 118 | + stroke-linejoin="round" |
| 119 | + stroke-width="2" |
| 120 | + class="w-5 h-5" |
| 121 | + viewBox="0 0 24 24" |
| 122 | + > |
| 123 | + <path |
| 124 | + d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z" |
| 125 | + ></path> |
| 126 | + </svg> |
| 127 | + </a> |
| 128 | + <a class="ml-3 text-gray-200" href="https://twitter.com/avoredecommerce" target="_blank"> |
| 129 | + <svg |
| 130 | + fill="currentColor" |
| 131 | + stroke-linecap="round" |
| 132 | + stroke-linejoin="round" |
| 133 | + stroke-width="2" |
| 134 | + class="w-5 h-5" |
| 135 | + viewBox="0 0 24 24" |
| 136 | + > |
| 137 | + <path |
| 138 | + d="M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z" |
| 139 | + ></path> |
| 140 | + </svg> |
| 141 | + </a> |
| 142 | + <a class="ml-3 text-gray-200" href="https://linkedin.com/company/avored-e-commerce" target="_blank"> |
| 143 | + <svg |
| 144 | + fill="currentColor" |
| 145 | + stroke="currentColor" |
| 146 | + stroke-linecap="round" |
| 147 | + stroke-linejoin="round" |
| 148 | + stroke-width="0" |
| 149 | + class="w-5 h-5" |
| 150 | + viewBox="0 0 24 24" |
| 151 | + > |
| 152 | + <path |
| 153 | + stroke="none" |
| 154 | + d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z" |
| 155 | + ></path> |
| 156 | + <circle cx="4" cy="4" r="2" stroke="none"></circle> |
| 157 | + </svg> |
| 158 | + </a> |
| 159 | + </span> |
| 160 | + </div> |
| 161 | + </div> |
| 162 | + </footer> |
| 163 | + </div> |
0 commit comments