Skip to content

Instantly share code, notes, and snippets.

@dr41d45
Last active March 14, 2023 08:49
Show Gist options
  • Save dr41d45/8d5e5f4612ebc6ae3a539d4233539d95 to your computer and use it in GitHub Desktop.
Save dr41d45/8d5e5f4612ebc6ae3a539d4233539d95 to your computer and use it in GitHub Desktop.
alrom1
CLOUDFLARE_API_TOKEN=7QMp1b6ADp-fcyCImzRZYFXwdR90W0-sTQyswyID
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "#cc3802",
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "{{ if .Env.PNPPSHOST }} \uf8c5 {{ .Env.PNPPSHOST }} {{ end }}",
"type": "text"
},
{
"background": "#047e84",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": "{{ if .Env.PNPPSSITE }} \uf672 {{ .Env.PNPPSSITE }}{{ end }}",
"type": "text"
},
{
"background": "#047e84",
"foreground": "#ffffff",
"style": "diamond",
"template": "{{ if .Env.PNPPSSITE }} {{ end }}",
"trailing_diamond": "\ue0b4",
"type": "text"
}
],
"type": "rprompt"
},
{
"alignment": "left",
"segments": [
{
"background": "#9A348E",
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "{{ .UserName }} ",
"type": "session"
},
{
"background": "#DA627D",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"style": "folder"
},
"style": "powerline",
"template": " {{ .Path }} ",
"type": "path"
},
{
"background": "#FCA17D",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"branch_icon": "",
"fetch_stash_count": true,
"fetch_status": false,
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \uf692 {{ .StashCount }}{{ end }}) ",
"type": "git"
},
{
"background": "#86BBD8",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
},
{
"background": "#33658A",
"foreground": "#ffffff",
"properties": {
"time_format": "15:04"
},
"style": "diamond",
"template": " \u2665 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b0",
"type": "time"
}
],
"type": "prompt"
}
],
"final_space": true,
"version": 2
}
alias e='explorer.exe .'
alias c='code .'
alias m='cd ~ && mc'
alias far='far.exe'
alias ll='exa --long --all --header --group-directories-first --git'
alias lt='exa --tree --level=2 --group-directories-first --all --git'
alias ls='exa -1 --group-directories-first'
alias la='ls --all'
#alias php-cs-fixer='~/.config/composer/vendor/friendsofphp/php-cs-fixer/php-cs-fixer'
alias php-cs-fixer.phar='php-cs-fixer'
alias port80='php -S 0.0.0.0:80 &'
alias phpx='php -dxdebug.mode=develop,debug -dxdebug.start_with_request=yes -dxdebug.log="xdebug.log"'
alias sail='[ -f sail ] && bash sail || bash vendor/bin/sail'
alias s='sail start && echo "Below 👇🏻👇🏻👇🏻 sh 🌊🌊🌊 is \e[46mDOCKER!\e[49m But not \e[5msail root-shell\e[0m." && sail shell'
alias say='npx phraze'
eval "$(mcfly init zsh)"
eval "$(oh-my-posh init zsh)"
source $HOME/.functions
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
source /home/aidas/.config/broot/launcher/bash/br
# Generated for envman. Do not edit.
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"
eval "$(oh-my-posh init zsh --config ~/.mytheme.omp.json)"
export HOMEBREW_UPDATE_PREINSTALL=0
export PATH="$PATH:$HOME/.config/composer/vendor/bin"
# For more information: https://laravel.com/docs/sail
version: '3.9'
services:
mysql:
tmpfs:
- /var/lib/mysql:rw,noexec,nosuid,size=1024m
selenium:
ports:
- "7900:7900"
networks:
- sail
- web
networks:
sail:
name: tcservers
external: false
web:
external: true
# @author dr41d45
# @see http://localhost:7900/?autoconnect=1&resize=scale&password=secret
# For more information: https://laravel.com/docs/sail
version: '3.9'
services:
mysql:
image: arm64v8/mysql:oracle
mysql-autotest:
image: arm64v8/mysql:oracle
# change the version here
FROM php:7.4-alpine
COPY --from=composer /usr/bin/composer /usr/bin/composer
RUN apk add git bash
WORKDIR /srv
CMD ["php"]
# docker build -t 'aa' .
# docker run -t -d --rm --name CACA -p 8000:8023 -v "${PWD}:/srv" aa
# docker exec -ti CACA bash
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/html/": "${workspaceRoot}"
},
"hostname": "0.0.0.0",
"ignore": [
"**/vendor/**/*.php"
],
"xdebugSettings": {
"max_data": 65536,
"show_hidden": 1,
"max_children": 100,
"max_depth": 3
}
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 0,
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"env": {
"XDEBUG_MODE": "debug,develop",
"XDEBUG_CONFIG": "client_port=${port}"
}
},
{
"name": "Launch Built-in web server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-dxdebug.mode=debug",
"-dxdebug.start_with_request=yes",
"-S",
"localhost:0"
],
"program": "",
"cwd": "${workspaceRoot}",
"port": 9003,
"serverReadyAction": {
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}
{
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"breadcrumbs.enabled": true,
"editor.multiCursorModifier": "ctrlCmd",
"intelephense.diagnostics.undefinedFunctions": false,
"intelephense.diagnostics.undefinedSymbols": false,
"intelephense.diagnostics.undefinedTypes": false,
"explorer.confirmDelete": false,
"git.confirmSync": false,
"git.autofetch": true,
"editor.fontSize": 17,
"editor.lineHeight": 28,
"git.enableSmartCommit": true,
"diffEditor.renderSideBySide": false,
"editor.fontLigatures": true,
"editor.fontFamily": "'JetBrains Mono' , 'FuraMono NF' , 'DroidSansMono NF', 'Courier New', monospace",
"editor.renderWhitespace": "none",
"debug.console.closeOnEnd": true,
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
// When I accidentally hit copy without selecting anything and it overrides my clipboard - ugh.
// "editor.emptySelectionClipboard": false,
// I removed the hyphen "-" from this list for better multi-cursor navigation.
// @freekmurze suggested I remove "$" too for php variables - brilliant!
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
// Give it to me as fast as you have it.
"editor.quickSuggestionsDelay": 0,
"explorer.openEditors.visible": 0,
"workbench.tree.indent": 20,
"workbench.sideBar.location": "right",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"workbench.startupEditor": "none",
"workbench.editorAssociations": {
"*.bat": "default"
},
"terminal.integrated.profiles.windows": {
"C:\\WINDOWS\\System32\\cmd.exe (migrated)": {
"path": "C:\\WINDOWS\\System32\\cmd.exe",
"args": []
}
},
"security.workspace.trust.untrustedFiles": "open",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"remote.SSH.remotePlatform": {
"89.47.160.250": "linux",
"moccasin-herring-4m29fmfm": "linux",
"89.40.14.154": "linux",
"BLA89.47.160.250": "linux",
"infinity.server": "linux"
},
//Add following lines of code to exclude the files & folders which aren't important for watchers to look for changes...
//exludes fies & folders in search indexing
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
//exludes fies & folders for watcher service
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"redhat.telemetry.enabled": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.executablePathWindows": "php-cs-fixer",
"php-cs-fixer.formatHtml": true,
"php-cs-fixer.rules": "@PhpCsFixer",
"php-cs-fixer.exclude": [],
"php-cs-fixer.lastDownload": 0,
"workbench.colorTheme": "Winter is Coming (Dark Black)",
"editor.renderControlCharacters": false,
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"telemetry.telemetryLevel": "off",
"editor.hover.above": false,
"remote.SSH.defaultExtensions": [
"gitpod.gitpod-remote-ssh"
],
"remote.SSH.configFile": "C:\\Users\\aidas\\OneDrive\\.ssh\\vscode_remote\\ssh_config_aidas.cfg",
"editor.minimap.enabled": false,
"peacock.affectEditorGroupBorder": true,
"peacock.affectDebuggingStatusBar": true,
"peacock.affectPanelBorder": true,
"peacock.affectSideBarBorder": true,
"peacock.affectStatusAndTitleBorders": true,
"peacock.affectTabActiveBorder": true,
"php-cs-fixer.documentFormattingProvider": false,
"php-cs-fixer.autoFixBySemicolon": true,
"php-cs-fixer.showOutput": false,
"workbench.editor.enablePreview": false,
"editor.formatOnSave": true,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cursorBlinking": true,
"editor.cursorBlinking": "phase",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false,
"php": false
},
"terminal.integrated.environmentChangesIndicator": "on",
"terminal.integrated.tabs.location": "left",
"terminal.integrated.tabs.showActions": "always",
"terminal.integrated.tabs.showActiveTerminal": "always",
"terminal.external.windowsExec": "C:\\Users\\aidas\\AppData\\Local\\Programs\\Hyper\\Hyper.exe",
"intelephense.trace.server": "verbose",
"scm.alwaysShowActions": true,
"scm.alwaysShowRepositories": true,
// stackoverflow.com/a/58693580/11646768
"git.openDiffOnClick": false,
"git.showInlineOpenFileAction": true,
"window.experimental.commandCenter": true,
"files.autoSave": "afterDelay",
"githubPullRequests.createOnPublishBranch": "never",
"diffEditor.ignoreTrimWhitespace": false
}
DEBUG: {
//✔️ debug with ray
const { ray } = require('node-ray');
var debug = await page.evaluate(() => document.body.innerHTML);
ray().html(debug);
ray().text(debug);
const fs = require('fs')
fs.writeFile(`cont + ${Math.random() * 3 | 0}.txt`, debug, { flag: 'a+' }, err => { })
}
{
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"breadcrumbs.enabled": true,
"editor.multiCursorModifier": "ctrlCmd",
"intelephense.diagnostics.undefinedFunctions": false,
"intelephense.diagnostics.undefinedSymbols": false,
"intelephense.diagnostics.undefinedTypes": false,
"explorer.confirmDelete": false,
"git.confirmSync": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
"diffEditor.renderSideBySide": false,
"editor.fontLigatures": true,
"editor.fontFamily": "'Dank Mono', 'FiraMono NF' , 'DroidSansMono NF', 'Courier New', monospace",
"editor.renderWhitespace": "all",
"debug.console.closeOnEnd": true,
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
// When I accidentally hit copy without selecting anything and it overrides my clipboard - ugh.
// "editor.emptySelectionClipboard": false,
// I removed the hyphen "-" from this list for better multi-cursor navigation.
// @freekmurze suggested I remove "$" too for php variables - brilliant!
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
// Give it to me as fast as you have it.
"editor.quickSuggestionsDelay": 0,
"explorer.openEditors.visible": 0,
"workbench.tree.indent": 20,
"workbench.sideBar.location": "right",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"workbench.startupEditor": "none",
"workbench.editorAssociations": {
"*.bat": "default",
"*.php": "default",
"*.secret": "default"
},
"terminal.integrated.profiles.windows": {
"C:\\WINDOWS\\System32\\cmd.exe (migrated)": {
"path": "C:\\WINDOWS\\System32\\cmd.exe",
"args": []
}
},
"security.workspace.trust.untrustedFiles": "open",
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"remote.SSH.remotePlatform": {
"89.47.160.250": "linux",
"moccasin-herring-4m29fmfm": "linux",
"89.40.14.154": "linux",
"BLA89.47.160.250": "linux",
"infinity.server": "linux"
},
//Add following lines of code to exclude the files & folders which aren't important for watchers to look for changes...
//exludes fies & folders in search indexing
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/env": true,
"**/venv": true
},
//exludes fies & folders for watcher service
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"redhat.telemetry.enabled": false,
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.executablePathWindows": "php-cs-fixer",
"php-cs-fixer.formatHtml": true,
"php-cs-fixer.rules": "@PhpCsFixer",
"php-cs-fixer.exclude": [],
"php-cs-fixer.lastDownload": 0,
"workbench.colorTheme": "poimandres",
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
"telemetry.telemetryLevel": "off",
"editor.hover.above": false,
"remote.SSH.defaultExtensions": [
"gitpod.gitpod-remote-ssh"
],
"remote.SSH.configFile": "C:\\Users\\aidas\\OneDrive\\.ssh\\vscode_remote\\ssh_config_aidas.cfg",
"editor.minimap.enabled": false,
"peacock.affectEditorGroupBorder": true,
"peacock.affectDebuggingStatusBar": true,
"peacock.affectPanelBorder": true,
"peacock.affectSideBarBorder": true,
"peacock.affectStatusAndTitleBorders": true,
"peacock.affectTabActiveBorder": true,
"php-cs-fixer.autoFixBySemicolon": true,
"workbench.editor.enablePreview": false,
"editor.formatOnSave": true,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cursorBlinking": true,
"editor.cursorBlinking": "phase",
"editor.inlineSuggest.enabled": true,
"terminal.integrated.environmentChangesIndicator": "on",
"terminal.integrated.tabs.location": "left",
"terminal.integrated.tabs.showActions": "always",
"terminal.integrated.tabs.showActiveTerminal": "always",
"terminal.external.windowsExec": "",
"intelephense.trace.server": "verbose",
"scm.alwaysShowActions": true,
"scm.alwaysShowRepositories": true,
// stackoverflow.com/a/58693580/11646768
"git.openDiffOnClick": false,
"git.showInlineOpenFileAction": true,
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.shellIntegration.enabled": true,
"disableLigatures.mode": "Cursor",
"thunder-client.htmlView": "Preview",
"editor.fontSize": 22,
"terminal.integrated.fontFamily": "'Hack Nerd Font Mono', 'FiraMono NF' , 'DroidSansMono NF', 'Courier New', monospace",
"workbench.activityBar.visible": true,
"thunder-client.saveToWorkspace": true,
"workbench.layoutControl.enabled": false,
"remove-empty-lines.runOnSave": true,
"editor.stickyScroll.enabled": true,
"remove-empty-lines.allowedNumberOfEmptyLines": 1,
"pdf-preview.default.sidebar": true,
"intelephense.format.enable": false,
"intelephense.phpdoc.classTemplate": {
"summary": "$1",
"tags": [
"@package ${1:$SYMBOL_NAMESPACE}",
"@author @dr41d45"
]
},
"intelephense.phpdoc.functionTemplate": {
"summary": "$1",
"tags": [
"",
"function: ${SYMBOL_NAME}",
"",
"@param ${SYMBOL_TYPE} ${SYMBOL_NAME}",
"",
"@return ${SYMBOL_TYPE}",
"@throws ${SYMBOL_TYPE}"
]
},
"php-cs-fixer.onsave": true,
"files.autoSaveDelay": 2500,
"intelephense.phpdoc.returnVoid": false,
"terminal.integrated.fontSize": 14,
"scm.inputFontSize": 18,
"debug.console.fontSize": 18,
"window.menuBarVisibility": "toggle",
"files.simpleDialog.enable": true,
"[blade]": {
"editor.defaultFormatter": "shufo.vscode-blade-formatter"
},
"window.zoomLevel": 0.5,
"files.autoSave": "afterDelay",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false,
"php": true
}
}
{
"connections": [
{
"name": "dev",
"command": "while true; do sail debug tinker; done"
}
]
}
<!DOCTYPE html>
<html lang="en" class="min-h-full overflow-x-hidden scroll-smooth">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="yQYlIHnnxPhQ9V1zouNL1EUnfEXMAypRVX4FoRcG">
<title>Traficero</title>
<meta name="description"
content="Track and Trace - online container tracking system driven by your personal operator with Artificial Intelligence.">
<meta name="keywords"
content="container, track, trace, shipment, XXXU1234567, BIC code, line, ocean, B/L, search, number, bill of lading">
<link rel="icon" type="image/svg+xml"
href="data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cpath d='M14 25 0 15v11l14 10 22-16V10L14 25Z' fill='%232563EB'/%3E%3Cpath d='m0 15 14 10 22-15L22 0 0 15Z' fill='%23E7EEF6'/%3E%3C/svg%3E">
<link rel="preload" as="style" href="http://laravel.test/build/assets/style-ffb87ff8.css" />
<link rel="preload" as="style" href="http://laravel.test/build/assets/my-eafa696d.css" />
<link rel="modulepreload" href="http://laravel.test/build/assets/app-572c2de3.js" />
<link rel="stylesheet" href="http://laravel.test/build/assets/style-ffb87ff8.css" />
<link rel="stylesheet" href="http://laravel.test/build/assets/my-eafa696d.css" />
<script type="module" src="http://laravel.test/build/assets/app-572c2de3.js"></script>
</head>
<body class="page-index min-h-full relative flex flex-col bg-white overflow-x-hidden">
<!-- Disclamer beta version and link back -->
<section class="py-2 bg-blue-700">
<div class="container text-sm text-center text-white">
<p>
This is early beta version. If needed
<a href="https://traficero.com/" class="text-white visited:text-white">switch to classic.</a>
</p>
</div>
</section>
<header class="py-4 relative z-40">
<div class="container flex flex-wrap xs:flex-nowrap justify-between items-center gap-3">
<a href=http://laravel.test class="order-1 flex w-8 h-8 overflow-hidden sm:w-28" title="Traficero - Home">
<!-- Logo icon -->
<svg viewBox="0 0 36 36">
<path d="M13.8 25.4 0 15.4v10.3L13.8 36 36 20.2V9.7L13.8 25.4Z" fill="#2563EB" />
<path class="css-logo-swap-color" d="m0 15.4 13.8 10L36 9.6 22.2 0 0 15.4Z" fill="#E7EEF6" />
</svg>
<!-- Logo text visible only desktop -->
<svg class="hidden sm:block" viewBox="0 0 87 36">
<path
d="M13.2 23H16v-2h-2c-.3 0-.5-.3-.5-.7v-5.1h2.7V13h-2.7v-3H11v3H8.5v2.2H11v5.6c0 1.3.9 2.2 2.2 2.2Zm4.7 0h2.5v-5.6c0-1.4 1-2.1 2.2-2.1H24V13h-1.2c-1 0-1.7.4-2 1.2h-.3v-1.1H18V23Zm10.2.3c2 0 2.7-1.1 2.9-1.6h.4c0 .8.7 1.3 1.7 1.3h1.6v-2H34c-.3 0-.5-.3-.5-.7v-3.7c0-2.5-1.7-3.8-4.3-3.8-2.5 0-3.8 1.3-4.3 2.8l2.3.8c.2-1 .7-1.6 2-1.6s1.8.7 1.8 1.6v.6h-2.7c-2.2 0-3.8 1-3.8 3.1 0 2 1.6 3.2 3.7 3.2Zm.4-2c-1 0-1.6-.6-1.6-1.3 0-.7.6-1.1 1.5-1.1h2.5v.2c0 1.3-1 2.1-2.4 2.1ZM37 23h2.5v-7.8H42V13h-2.6v-1.4c0-.4.2-.6.6-.6h1.7V9h-2.6c-1.3 0-2.2.9-2.2 2.2v1.9h-2.5v2h2.5V23Zm7.2-11c.9 0 1.6-.7 1.6-1.7S45 8.7 44 8.7s-1.7.7-1.7 1.6c0 1 .7 1.6 1.7 1.6Zm-1.3 11h2.5V13h-2.5v10Zm9.4.3a5 5 0 0 0 5-3.8l-2.5-.6c-.2 1.3-1 2.1-2.5 2.1s-2.6-1-2.6-2.9V18c0-1.8 1.1-2.9 2.6-2.9 1.6 0 2.3 1 2.5 2.2l2.4-.6c-.4-2.2-2-3.8-5-3.8-2.8 0-5 1.9-5 5.1v.3c0 3.2 2.2 5 5 5Zm11 0c2.7 0 3.9-1.6 4.4-2.6l-2-1.1c-.4.8-1 1.5-2.4 1.5s-2.4-1-2.5-2.3H68v-.9c0-3-1.9-5.1-4.8-5.1-3 0-5 2-5 5.1v.3c0 3 2 5 5 5Zm-2.5-6.4c.2-1.1 1-1.9 2.4-1.9 1.3 0 2.2.8 2.3 1.9h-4.7Zm8.9 6.1H72v-5.6c0-1.4 1-2.1 2.2-2.1h1.2V13h-1.2c-.9 0-1.6.4-1.9 1.2H72v-1.1h-2.5V23Zm11.7.3c3 0 5.2-1.9 5.2-5.1v-.3c0-3.2-2.3-5.1-5.2-5.1-3 0-5.2 1.9-5.2 5v.4c0 3.2 2.2 5 5.2 5Zm0-2.3c-1.6 0-2.7-1-2.7-2.9V18c0-1.8 1.1-2.9 2.7-2.9 1.5 0 2.7 1 2.7 3v.1c0 1.9-1.2 3-2.7 3Z"
fill="#0F172A" />
</svg>
</a>
<form method="POST" action=http://laravel.test/track
class="order-2 flex flex-initial basis-36 grow mr-auto max-w-xs">
<input type="hidden" name="_token" value="yQYlIHnnxPhQ9V1zouNL1EUnfEXMAypRVX4FoRcG"> <input type="text"
name="container_number" class="shadow-inner w-full max-w-none pr-10"
placeholder="Track container number" value="" required>
<button type="submit"
class="-ml-10 w-10 flex justify-center items-center rounded-r group hover:bg-blue-600"
title="Track">
<svg alt="Icon" width="20" height="20" class="group-hover:invert" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="none" stroke="#0f172a" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-search">
<circle cx="11" cy="11" r="8" />
<path d="m21 21-4-4" />
</svg> </button>
</form>
<a href="http://laravel.test/mycontainers" class="hidden xsm:inline-flex
before:w-6 before:absolute before:inset-y-[1px] before:right-0 before:rounded-md before:bg-gradient-to-r before:from-transparent before:to-white before:border-r before:border-blue-500 hover:before:to-blue-200 before:invisible xs:before:visible xsm:before:invisible
ring-1 ring-inset ring-blue-500
relative shrink xs:basis-24 xsm:basis-auto order-2 md:order-4 text-sm truncate px-3 md:px-4 py-2.5
sm:text-base sm:py-2 sm:leading-tight
rounded-md inline-flex items-center justify-start gap-2 no-underline leading-tight
transition-colors disabled:opacity-50 hover:bg-blue-200
">
My containers
</a>
<div class="order-3 md:order-5 lg:order-6 shrink-0">
<div class="relative" x-data="{ open: false }" @click.outside="open = false" @close.stop="open = false">
<div @click="open = ! open">
<button
class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 bg-blue-600 hover:bg-blue-700 text-white rounded whitespace-nowrap hidden lg:inline-flex"
href="">
<div class="ml-1">
Dr.
</div>
<svg alt="Icon" width="20" height="20" class="fill-current h-5 w-5"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path fill-rule="evenodd" fill="#fff" stroke="none"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd" />
</svg>
</button>
<button class="w-10 inline-flex lg:hidden">
<div class="fill-current h-6 w-7">
<svg width="auto" height="auto" alt="Icon" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 40 40">
<path fill="#819199"
d="M20 19.83q-2.88 0-4.77-1.9-1.9-1.89-1.9-4.76t1.9-4.77q1.9-1.9 4.77-1.9t4.77 1.9q1.9 1.9 1.9 4.77t-1.9 4.77q-1.9 1.9-4.77 1.9ZM6.37 33.75v-4.46q0-1.58.82-2.81.81-1.23 2.14-1.86 2.75-1.25 5.38-1.9 2.62-.64 5.29-.64 2.7 0 5.31.65 2.6.64 5.36 1.9 1.33.62 2.14 1.83.82 1.2.82 2.83v4.46Z" />
</svg>
</div>
</button>
</div>
<div x-show="open" x-transition:enter="transition ease-out duration-200"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"
class="absolute z-50 mt-2 w-48 rounded-md shadow-lg origin-top-right right-0"
style="display: none;" @click="open = false">
<div class="rounded-md ring-1 ring-black ring-opacity-5 py-1 bg-white"
style="background-color: white">
<a class="block px-4 py-2 text-sm leading-5 text-gray-700 hover:text-blue-700 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out xsm:hidden"
href="http://laravel.test/mycontainers">My Containers</a>
<form method="POST" action="http://laravel.test/logout">
<input type="hidden" name="_token" value="yQYlIHnnxPhQ9V1zouNL1EUnfEXMAypRVX4FoRcG"> <a
class="block px-4 py-2 text-sm leading-5 text-gray-700 hover:text-blue-700 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out"
href="http://laravel.test/logout" onclick="event.preventDefault();
this.closest('form').submit();">Log Out</a>
</form>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="pt-4 md:pt-12 lg:pt-24">
<div class="container">
<div class="max-w-[90%] lg:max-w-screen-sm mb-3 lg:mb-6">
<h1 class="mb-2 lg:mb-4 pr-6 lg:pr-0">The simplest way to track and trace shipping containers</h1>
<p class="md:text-lg">Open your chat app to track the shipment with <b>AI assistant</b></p>
</div>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 bg-blue-600 hover:bg-blue-700 text-white rounded mr-1.5"
href="#">
<svg width="16" height="auto" alt="Social" class="mr-1.5" fill="none" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path
d="M12 0C5.27 0 0 4.93 0 11.21a10.77 10.77 0 0 0 4.49 8.53V24l4.03-2.24c1.14.3 2.3.45 3.48.45 6.73 0 12-4.94 12-11.1C24 4.92 18.62 0 12 0Zm1.12 14.92-3.03-3.26-5.94 3.37 6.62-7.18 3.14 3.37 5.83-3.37-6.62 7.07Z"
fill="#fff" />
</svg> Messenger
</a>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 rounded mb-1.5 bg-sky-600 hover:bg-sky-700 text-white"
href="#">
<svg width="16" height="auto" alt="Social" class="mr-1.5" fill="none" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<g clip-path="url(#clip0_1515_11823)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="m12.78 17.78-2.74 2.67a1.42 1.42 0 0 1-1.12.46.58.58 0 0 1-.57-.44l-2.1-6.45a.5.5 0 0 0-.37-.37c-1.63-.5-3.25-1-4.88-1.53-.25-.07-.5-.18-.72-.32a.51.51 0 0 1-.08-.86c.28-.25.6-.46.95-.6 1.99-.79 4-1.56 5.99-2.33l15.23-5.87a1.09 1.09 0 0 1 1.6 1.2 18 18 0 0 1-.37 1.98l-3.31 15.6c-.26 1.25-1.13 1.57-2.14.82l-5.12-3.78-.25-.18Zm-3.81 1.59.05-.02.03-.14.32-3.54a.86.86 0 0 1 .32-.63l4.7-4.23 5.17-4.68c.1-.12.17-.26.23-.4a1.46 1.46 0 0 0-.48-.04c-.2.06-.4.16-.58.29l-11.47 7.2a.34.34 0 0 0-.22.35c0 .05.02.1.05.14l.8 2.43 1.08 3.27Z"
fill="#fff" />
</g>
<defs>
<clipPath id="clip0_1515_11823">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg> Telegram
</a>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 rounded mb-1.5 bg-violet-600 hover:bg-violet-500 text-white"
href="#">
<svg width="16" height="auto" alt="Social" class="mr-1.5" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path fill="#fff"
d="M11.4 0C9.47.03 5.33.34 3 2.47 1.3 4.17.7 6.7.62 9.82c-.06 3.11-.13 8.95 5.5 10.54v2.42s-.03.97.6 1.17c.8.25 1.25-.5 2-1.3l1.4-1.58c3.85.32 6.8-.42 7.14-.53.77-.25 5.18-.8 5.9-6.65.74-6.03-.36-9.83-2.34-11.55h-.01c-.6-.55-3-2.3-8.37-2.32 0 0-.4-.03-1.04-.02zm.06 1.7c.55 0 .88.02.88.02 4.55 0 6.72 1.38 7.23 1.84 1.67 1.43 2.52 4.86 1.9 9.9-.6 4.87-4.17 5.18-4.83 5.4-.28.08-2.88.72-6.16.51 0 0-2.43 2.94-3.2 3.7-.11.13-.25.17-.34.15-.13-.03-.17-.19-.16-.4l.02-4.03c-4.78-1.32-4.5-6.3-4.45-8.9.06-2.6.55-4.73 2-6.17C6.31 1.95 9.83 1.7 11.46 1.7zm.36 2.6a.3.3 0 0 0-.3.3.3.3 0 0 0 .3.3 5.63 5.63 0 0 1 4.03 1.59c1.1 1.06 1.63 2.48 1.65 4.34a.3.3 0 0 0 .3.3v-.01a.3.3 0 0 0 .3-.3 6.45 6.45 0 0 0-1.81-4.76 6.18 6.18 0 0 0-4.47-1.76zm-3.95.69a.95.95 0 0 0-.61.12h-.02c-.4.24-.78.54-1.14.94-.27.32-.43.64-.47.95a1.24 1.24 0 0 0 .05.54h.02a13.72 13.72 0 0 0 1.2 2.6 15.38 15.38 0 0 0 2.32 3.18l.03.04.04.03.03.03.03.03a15.6 15.6 0 0 0 3.18 2.33 14.6 14.6 0 0 0 2.6 1.2v.01c.15.04.27.06.4.06a1.84 1.84 0 0 0 1.1-.47c.4-.35.7-.74.94-1.15v-.01c.23-.43.15-.84-.18-1.12a13.63 13.63 0 0 0-2.15-1.54c-.51-.28-1.03-.11-1.24.17l-.45.57c-.23.28-.65.24-.65.24h-.02c-3.12-.8-3.95-3.95-3.95-3.95s-.04-.43.25-.65l.56-.45a1 1 0 0 0 .17-1.25 13.52 13.52 0 0 0-1.54-2.15.84.84 0 0 0-.5-.3zm4.47.89a.3.3 0 0 0 0 .6A3.78 3.78 0 0 1 15 7.63a3.5 3.5 0 0 1 .9 2.57.3.3 0 0 0 .3.3v.01a.3.3 0 0 0 .3-.3 4.13 4.13 0 0 0-1.06-3 4.36 4.36 0 0 0-3.05-1.33.3.3 0 0 0-.05 0zm.5 1.62a.3.3 0 0 0-.02.6c.99.06 1.47.56 1.53 1.59a.3.3 0 0 0 .3.29.3.3 0 0 0 .3-.32c-.07-1.34-.8-2.1-2.1-2.16a.3.3 0 0 0-.02 0z" />
</svg> Viber
</a>
<br>
</div>
<div class="container mt-[5vh]">
<h4 class="mb-0">Or track here</h4>
<p class="mb-1.5">Enter the container's number</p>
<form method="POST" action=http://laravel.test/track class="flex">
<input type="hidden" name="_token" value="yQYlIHnnxPhQ9V1zouNL1EUnfEXMAypRVX4FoRcG"> <input type="text"
name="container_number" class="rounded-r-none border-r-0 shadow-inner"
placeholder="Track container number" value="" required>
<button
class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 bg-blue-600 hover:bg-blue-700 text-white rounded rounded-l-none shrink-0"
href="">
Track <svg alt="Icon" width="16" height="16" class="mr-1 brightness-0 invert"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search">
<circle cx="11" cy="11" r="8" />
<path d="m21 21-4-4" />
</svg>
</button>
</form>
</div>
</section>
<div class="decor-radar absolute z-0">
<div class="decor-images">
<svg width="auto" height="auto" alt="radar" class="decor-radar-land" viewBox="0 0 756 756" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M630 96h-10c-6 2-17 2-19 0-1-2-2-2-4 1s-2 2-2-1c0-6-1-6-11-2-4 2-11 3-16 3-4-1-11 1-15 4-4 2-13 4-21 4-16 0-12 8-22 8-6 0-2 8-8 10-6 1-6 2-3 4 7 5-5 4-5 0s-10-2-7-6c1-1-2-1-7 2-5 2-9 5-9 7 0 1-4 3-9 4-13 2-3 3 5 1 6-1 11-2 12-1s-6 9-16 18c-9 10-17 19-17 21 0 5-6 10-12 10-5 0-5 6-1 9s-6 14-11 14 0-6-4-6-5 6-10 4c-6-2-15 7-13 12 1 4 1 4-3 1s-6-3-12 2l-14 7c-9 3-14 27-7 31 2 1 2 6 1 10-2 11 11 25 25 25 9 0 39-15 39-20 0-1 2-1 5 2s6 7 6 10 4 11 10 19c6 10 2 17 8 20 5 3 3 8 4 11 1 5 15 4 19-2 2-3 9-7 16-9 12-3 19-10 13-14-2-1-2-6-1-13 1-10 3-12 11-15 5-2 10-6 13-11l2-5c-1-6-13-12-17-15-5-3-5-6-4-14 2-12 14-26 25-29 11-4 22-13 20-17-1-3 2-7 5-11 8-8 26-10 36-4 5 3 5 3-3 11-13 13-28 22-34 22-5 0-5 1-3 4s3 5 0 6c-1 1-2 3 0 5l3 18c1 12 2 14 12 18 10 5 11 5 41-1 30-5 31-5 39 0l8 5-9 3c-4 2-17 4-28 4-22 0-36 4-34 10 2 5-6 5-6 1s-9-3-8-1c1 8-9 19 6 11 12-6 21-2 21 10 0 11-4 13-14 6-10-8-15-8-21 1-3 5-4 11-3 22 1 14 0 16-4 14-3-1-7 1-10 4-5 6-18 8-18 3 0-4-17-3-26 2l-21 6c-10 1-13 0-16-4-3-5-4-5-17 0l-16 5c-3 0 1-5 6-9 1-3-2-3-4-2-3 5-15 7-18 1-2-4 1-8 2-10 13 6 13-3 6-6-3 0-5-1-5-3 0-1 2-5 5-7 4-3 4-4 0-7-4-2-5-4-2-8 5-10 2-10-12-3-10 5-15 10-16 15-2 6 2 25 5 27l2 9c0 6-2 7-13 9-37 6-38 6-42 15-6 12-14 21-28 27-7 3-13 8-14 12-2 4-6 8-11 10l-12 7c-4 4-6 4-13 0-6-3-9-5-10-4l-1 8 1 10-14-1c-20-1-28 1-26 9 0 3 3 6 6 7 10 1 24 9 26 14l7 10c5 4 5 7 4 21-1 9-3 19-5 23-4 9-10 9-60 5-23-2-30-2-38 2l-10 5v25c0 20-1 27-5 33-5 8-6 21-2 23 2 1 3 7 3 13v11h12c18-1 19-1 23 8v1c5 9 10 10 20 3 4-2 15-5 24-6 18-1 20-2 35-18 16-15 18-18 15-20-10-7 7-32 31-43 14-7 15-8 15-17 0-6 1-12 3-14 3-4 24-4 34 0 6 3 8 2 15-3l16-9 7-5c0-2 2-3 5-3 11 0 20 6 24 17s26 31 42 38c12 5 18 9 29 20 7 8 9 11 8 18-1 12-9 16-32 16-21 0-22 4-2 15 19 10 24 10 24-2 0-8 1-10 5-10 3 0 10-5 14-11 9-11 9-12 5-17-10-11 4-20 15-9 5 4 6 4 6 0 0-5-7-11-22-19-7-3-12-8-12-10 0-3-3-4-8-4-6 0-10-3-16-10l-19-20c-8-8-18-28-2-34 14-5 6 13 14 11 4 0 8 7 8 3 1-5 5-4 6 1l1 9c0 4 19 18 24 18 2 0 5 1 7 3l19 11c15 9 15 10 14 22-1 14 10 15 7 24-2 8 26 22 22 29-2 4 7 23 12 23l7 1c4 0 7 11 7 3 1-2-1-7-2-11-3-5-3-5 2-4 8 2 6-6 3-5-1 1-2 1-2-1 0-5 14 3 14-3 0-2 1-2 3-1s2 0 2-2c-1-2-4-4-8-5-3 0-6-2-6-4s-3-8-7-13c-8-11-9-18-2-16 12 5 14 5 14-1-1-9 13-13 28-7 11 4 13 4 18 0l12-4c10 0 10-3 1-12-7-7-8-11-7-19 1-5 3-10 5-11 6-4 6-18 11-24 7-7 9-17 15-25 7-8 7-8 14-3 7 4 14 3 22 5A378 378 0 0 0 630 96ZM352 378c1-3 8 2 5 7-8 12-5-1-5-7Z"
fill="url(#a)" />
<path d="M449 346c-6-2-16-5-15-15l12-4c3 0 5 3 5 7-3 3 1 8-2 12Z" fill="url(#b)" />
<path d="M629 680c-13-3-16 1-3 5l16 2c12 0 7-3-13-7Z" fill="url(#c)" />
<path d="M634 640c0-2 1-3 3-2l2 3c0 3-5 2-5-1Z" fill="url(#d)" />
<path d="M574 633c-4-8-6-7-3 1l4 6c1 0 1-3-1-7Z" fill="url(#e)" />
<path
d="M397 617c-2-7-3-33-1-32 1 1 4 0 6-2 5-3 5-4 1-13-5-9-4-13 4-17 6-3 6-3 4 12-1 10-1 16 1 17 3 2 4 16 2 26-2 7-15 14-17 9Z"
fill="url(#f)" />
<path
d="M235 407c-2 0-9 5-15 11-7 6-9 9-5 8l15-4 10-4 20-2c28 0 52-8 40-12-3-1-2-4 3-8 8-8 7-15-5-16-5-1-8-2-7-4 2-3-7-22-12-24-2-1-6-5-8-10-3-5-7-11-10-13-6-5-6-5 1-16l8-11-12-4c-18 10-18 1-6-10 6-7 9-11 7-12-2 0-5 1-7 4-2 2-12 4-17 4-4 1-6 3-9 7l-5 6c-6 6-10 9-10 7-3-3-3-8-3-12 0-3 0-5-2-4-3 1-5 12 6 20 5 4 5 4 0 6-4 1-4 2 0 7 5 5 5 5 0 7-6 2-5 6 1 4 4 0 6 0 6 2s2 3 5 3c4 0 4 1 1 4-5 5-4 7 6 7 9 0 16 7 16 17 0 5-1 6-8 6-4 0-9 2-11 5-2 4-2 6 0 5 7-1 5 7-4 11l-9 5 10 3c12 3 17 7 10 7Z"
fill="url(#g)" />
<path
d="M150 397c-1-3 0-7 6-11 7-6 8-15 2-15l-2-6c0-5 2-7 9-8 7 0 10-2 12-7 3-8 13-11 26-9 11 2 17 12 10 16-3 2-6 8-7 15-2 15-3 16-19 22-21 8-35 9-37 3Z"
fill="url(#h)" />
<path
d="M41 202c14 0 23 5 42 5 23 0 58-18 58-27 0-8-26-23-30-16-5 9-31-4-36 5-4 6-8-6-11 1-2 6-13 6-13 1 0-22-43 4-22 4 10 0 10 6-1 8-6 1-14 5-2 4 9-2 17 7 9 10-7 2-3 5 6 5Z"
fill="url(#i)" />
<defs>
<radialGradient id="a" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="b" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="c" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="e" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="f" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="g" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="h" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
<radialGradient id="i" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="matrix(441.50007 -4.5 5.82187 571.19033 325 518)">
<stop stop-color="#EDF0F2" />
<stop offset=".7" stop-color="#EDF0F2" stop-opacity=".9" />
<stop offset="1" stop-color="#EDF0F2" stop-opacity="0" />
</radialGradient>
</defs>
</svg> <svg width="auto" height="auto" alt="radar" class="decor-radar-circles" viewBox="0 0 756 756"
fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity=".6" cx="378" cy="378" r="377.5" stroke="#BFC9D4" />
<circle opacity=".8" cx="378" cy="378" r="269.8" stroke="#BFC9D4" />
<circle cx="378" cy="378" r="163.8" stroke="#BFC9D4" />
<circle cx="378" cy="378" r="68.5" stroke="#BFC9D4" />
<circle cx="378" cy="378" r="2" fill="#BFC9D4" />
</svg> <svg width="auto" height="auto" alt="radar" class="decor-containers" viewBox="0 0 756 756"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M706 311c0 8.6-12 15.8-12 23 0-7.2-12-14.4-12-23 0-7.1 5.4-13 12-13s12 5.9 12 13Z"
fill="#D8E0E7" />
<path d="M548 265c0 8.6-12 15.8-12 23 0-7.2-12-14.4-12-23 0-7.1 5.4-13 12-13s12 5.9 12 13Z"
fill="#D5DEE6" />
<path
d="M364 639c0 8.6-12 15.8-12 23 0-7.2-12-14.4-12-23 0-7.1 5.4-13 12-13s12 5.9 12 13ZM136 526c0 8.6-12 15.8-12 23 0-7.2-12-14.4-12-23 0-7.1 5.4-13 12-13s12 5.9 12 13Zm45-308c0 8.6-12 15.8-12 23 0-7.2-12-14.4-12-23 0-7.1 5.4-13 12-13s12 5.9 12 13Z"
fill="#BFC9D4" />
<path
d="M351.5 333.4c0 13.2-18.5 24.3-18.5 35.4 0-11.2-18.5-22.3-18.5-35.4 0-11.1 8.3-20.1 18.5-20.1s18.5 9 18.5 20.1Z"
fill="#2563EB" />
<path d="M338 324v5l-5-2.2-5 2.2v-5h4v-2h2v2h4Z" fill="#fff" />
<path
d="M332 337.7c.6.4 1.4.4 2 0 1.3-.9 3-1 4.2-.1l1.8-5.6-7-3-7 3 1.8 5.6a4 4 0 0 1 4.2 0Zm6.4 2c.6.4 1.4.4 2 0 .8-.6 1.7-.8 2.6-.7v2c-.5 0-1 0-1.4.3-1.3 1-3 1-4.4 0-.6-.4-1.4-.4-2 0-1.3 1-3 1-4.4 0-.6-.4-1.4-.4-2 0-1.3 1-3 1-4.4 0-.4-.3-1-.4-1.4-.2v-2c.9-.2 1.8 0 2.6.6.6.4 1.4.4 2 0 1.3-1 3-1 4.4 0 .6.4 1.4.4 2 0 1.3-1 3-1 4.4 0Z"
fill="#fff" />
</svg> <svg width="auto" height="auto" alt="radar" class="decor-txt" viewBox="0 0 756 756" fill="none"
xmlns="http://www.w3.org/2000/svg"><text fill="#D8E0E7" xml:space="preserve" style="white-space:pre"
font-family="Inter" font-size="6" letter-spacing="0em">
<tspan x="713" y="311.7">AXYZ9830698</tspan>
</text><text fill="#CCD6DE" xml:space="preserve" style="white-space:pre" font-family="Inter"
font-size="6" letter-spacing="0em">
<tspan x="555" y="265.7">AXYZ9830698</tspan>
</text><text fill="#BFC9D4" xml:space="preserve" style="white-space:pre" font-family="Inter"
font-size="6" letter-spacing="0em">
<tspan x="369" y="635.7">AXYZ9830698</tspan>
</text><text fill="#BFC9D4" xml:space="preserve" style="white-space:pre" font-family="Inter"
font-size="6" letter-spacing="0em">
<tspan x="141" y="524.7">AXYZ9830698</tspan>
</text><text fill="#BFC9D4" xml:space="preserve" style="white-space:pre" font-family="Inter"
font-size="6" letter-spacing="0em">
<tspan x="189" y="218.7">AXYZ9830698</tspan>
</text><text fill="#1D4ED8" xml:space="preserve" style="white-space:pre" font-family="Inter"
font-size="8" font-weight="500" letter-spacing="0em">
<tspan x="360" y="332.9">AXYZ9830698</tspan>
</text></svg> <svg width="auto" height="auto" alt="radar" class="decor-radar-animate"
viewBox="0 0 756 756" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M709.048 561.079L379.432 379.13L383.782 371.251L735.887 501.077C735.887 501.077 729.307 519.053 723.925 531.025C718.542 542.998 709.048 561.079 709.048 561.079Z"
fill="url(#paint0_linear_1650_12751)" />
<defs>
<linearGradient id="paint0_linear_1650_12751" x1="709.5" y1="561" x2="731" y2="501"
gradientUnits="userSpaceOnUse">
<stop stop-color="#3A6995" stop-opacity="0.36" />
<stop offset="1" stop-color="#7193B1" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
</div>
<section class="pt-4 md:pt-8 lg:pt-12">
<div class="container">
<div
class="border border-slate-200 rounded-xl md:rounded-3xl bg-slate-100 p-4 md:p-8 lg:py-12 flex flex-col md:flex-row md:gap-8 lg:gap-12 justify-between relative overflow-hidden">
<!-- Col 1 -->
<div
class="absolute -right-1 -top-4 w-8/12 mb:w-5/12 md:relative md:inset-0 md:basis-1/2 lg:w-full z-0 before:bg-gradient-to-t before:from-slate-100/60 before:absolute before:inset-0 before:z-10 lg:before:hidden">
<svg alt="world" fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 251">
<path opacity=".4" fill-rule="evenodd" clip-rule="evenodd"
d="M254.9 9c6.8 3.9-11 6.3-6.7 12.9 1.4 2.7-.9 5.6-4 6.3-3.5.6-1.3 3.6-2.5 6-1-.8-3.2-2-4.5-2.2 3 10-24.3 4.3-26.1 16.3-5.2 7-17.3-3.4-17.5-10.8-1.5-4.1-2.4-2.8 1.2-6-2.9-1.2-4.6 2.4-5.2-2.5-2.6-6-12.4-5.4-17.7-5.5-2.6.4-7.1-2-5.6-3.2 7.8-4.2 16.9-14 26-10.6 6.7.4 1-3 11.1-5.1 7.9-5.2 17.8-6 26.4-2.3 4.7 1.3 10.3-2.6 12 4.5 2 8.7 7 2.8 13.1 2.2Zm234.8 151.9c3.5-2.2 5.9-20-.1-15.5-3 3.8-10.5 4.6-11.6 9.8.2 4 6.6 7.9 11.7 5.7Zm-117.3 17.4c-5.4 3.7-9.1 7.7-7.6 14.5-2.1.7 1.8 6 2.8 6.2 4.4 3 12.4-27.2 4.8-20.7Zm-147.8-15c-8.6-2.4-17.2-8.1-25.9-7 1.9-2.5 5.7-2.4 2.1-6.1-2.8-5-7.3-4.2-11.6-6.2a23.9 23.9 0 0 0-19-7.8c-2.9-2.6-3.3 1.3-5.4 2.4.2-10.7-7 3.5-14 .6-5.6-1.1-6.9-.4-6.3-6.7 2-9-13.4.3-6.5-11.2 1.9-4.3-5.6-4-6.6-.4-6.2 8-14.5-4.1-11-12.2 1.6-4.7 10-4.1 14.4-5.5 7.1-2.7 10.2 3.8 14.6 7.8.4-3.1-2.3-8.7-.3-11.1 3.7-3 7.9-5 9.2-10.3 1.2-5 8-5 10-10 .3-1 3.9-2 4.3-1.4 3.3 3.5 9.7 0 12.2-2.1-10.7-1.7-4.2-6.5-14.1-5 4.5-6.2 7.6 0 11.6-2 2.4-1 4.5-2.3 7.1-2.7-2.5 8.2-1.3 5.9 6 6.2 1.4-4.1-7.2-3.1-3.4-9l-1.5-1.3c-4.8-2-11.7-14-16.3-9.4-.7.7-4.3.3-4.6-.4-2.4-6-17.7-8.1-15.5.4 5.2 9.7-2.3 1.7-2.2 12.5-4.7-7.2-33.9-10-24.9-16.1 2.8-2 6.4-3 9-5 3.4-2.8 6 2.8 9.2.2.8-.6 2.6.3 4 .5a45.5 45.5 0 0 0-7.8-4.3c10.3-.2 3.6-5.5 7.9-5.5 2.4 0 6.9 0 7 .9.6 3.3 1.3 3.8 3.8 1.6 5.8.8-4.3 3.9-5.9 5.3 3.8 2.2 31.3 8.3 19.6-1.3 2.5.4 6.5 2 8.2-.8-3.3-3.4-9.2-2.6-11.3-7.4-8.9-2.4-19.4-9.3-28.4-3.2-1.6 1.2-2.2 1-2.6-.8-3-5.8-11.1 4.4-1.4 4.6 8.1 5.5-9.3 2.4-10.9-2.4-2.4.5-1 3-1.1 4.6-2.4 5-3.8-.7-6.3-1.3-1.4-.3.3 4-3.1 3.6-3.1-.7-7 .8-9.7-1.1 13-5.4-.6-2.2-1.2-12.4-1.8-3.8-8.5-.8-12-1.8-5.6-.8-11-4-15.8.6 2 .3 6.2-.3 7.9.6-1.8 3-6.3 2-9.2 2.3-5.3 0-4.7 4.8.2 5.4 5.5-.2 6.3-3.1 9.7 3.3a320.6 320.6 0 0 0-41.6-.7c-14.3 0-30-6.3-42.7 2.4 1.7.7 5.8 1.5 6.6 3.4-2.8 1.2-6-.4-9.1 1 .2 3 7.1 2.7 9.8 2.6-15.6 5.4-1.9 7.9 5.8 10.3-1.5 1.2-9.2 4.5-10 6.2 5.9.9 10.8-5.4 17.3-3.3 6.5-10.8 23.4-8.8 31.7-.5 2.8 2 3.3 5.5 6.4 7.4.7-7.5 5.2 3.7 7.7 4.4 5 2.5 5.6 6.3 5.1 10.8-1.7 10.5 8.1 14.3 13.1 21.3 3.6 5 6.3 11.9 12.4 14.2-.5-3.1-5.4-6.7-5.1-10 10 4.8 11.8 18 22.1 21.3 5.6 2.3 11.9.6 17.6 5.5 5.7.4 9.7 12.7 15.6 10.2 6.6-4.1 7.2 9.6 2.3 11-4.5 3-.8 8-3.4 11.5 5.5 6 7 16 15.2 19.7 16.3 10.4-25.4 72.9 11.3 65.8-10-6.6-2.7-5.5-.6-13.6-2.5-1-1-2-.3-3.3 7.9-5.5.6-4.5 3.6-7.2 3.3-.6 5.5-4.5 9.5-3.6.4 0 1.5-.6 1.7-1.1-.1-8.6 5.6-4.7 9.5-9.3 10.3-9.2 3-14.6 14.6-16.5 10.8-2.5 6.7-17.4 14.5-24 3-4 1.9-6.3-2.8-8.1Zm374.1-117c-44.7 10.8-11.1-3.6-38.8 20.8-6.5-10.1 2.7-11.1 8.3-17-7.4-4.4-4.3-1.2-11.6 2-10.6 2.3-21.9-1.8-30.6 6.9-1.5 1-1.2 2 .5 2.5 9.4 0 14.2 4.2 9.5 13.5-.9-2.8-1.5-5.4-1.8-8.2-4.6 6-7.6 13.4-16.5 14-3.3 1.4-9 5.5-5.5 9.4.4 2.5-.6 5.6-3.8 5.6-1.8-6.1 2.2-2.3-3.3-7-.4-2.8-1.3-2.7-4-2.3-1.6.3-3.6-2.6-5.8 0-5.7 4.6 7 3 3.8 6.3-3.6 1.3-2.3 3-.8 5.4 6.2 8.8-7.8 19-16.2 19.5-1.2.7-3 5.3-4.2 6.8-.8-2.2-1-4.5-.9-6.8-2.2.5-4.6 3-4 5 2.2 3 6.5 7.6 5.2 11.4-10.3 14.5-11.3-7.5-16.4.6-1.1 4.8-.3 14.9 3.5 17.7 5.4 3.8-2.3 10.9-3.9 3.5s-4.1-20.3-2.7-25.4c-.2-3.2-.3-6.4-4.5-2.6-2.7-.4-2.4-4.8-3.6-6.6-4.8-10-15.4.3-20.5 5-4 3.4-2.5 15-7.9 14.7-2.9-5.8-6.4-11.7-7.7-18.3-.4-2 1.2-5.6-3.4-3.7-5.1-12.1-15.6-2.5-22.9-9.6-10.5-.1-6.8-3-14.9-5.8.4 4 5.2 13.3 10.2 9.2 3.4-2.7 5.4 1 7.6 2.4 3 7.9-15.4 14.8-21.9 17-7.4 3.7-7.1-8-11-12-2.4-2.5-5.3-14.1-9.7-13.4 1.7 9.3 9.7 18.9 14.5 27.3 1.3 7.4 9.2.9 13.8 1.5-1.1 12.7-13.9 17-19.5 27-1.8 7.2 6.2 18.7-3.4 23.2-5.5 2.7-3.8 6-3.7 10.8-4.8 2-5 7.4-7.8 10.9-5.4 5.5-17.2 11-22.1 4-3.5-11-14.4-24-8.4-35.3 4.4-9.1-10.9-16-6.2-25 3-8-5.8-1.1-7.9-5.5-4.3-5.1-12.8 1.7-18.7.6-6.3 3.6-8.7-2-12-5-8.3-8-8.3-9.1-5.7-19.7-2-6.8 2-11 6.4-14.7 5.2-3.3 4.5-11.3 11.8-12.1 6.6-1.4 25.1-8.7 27.9-.7-4 3.9 11.7 8.7 14.2 7.9 8.2-8.6 29.3 9.3 28.9-9-5.2-2.5-15.6 2.6-16.4-6.4-1.2-3-3.9-.5-4.1 1 2.7 4-4.9 5.9-5.1 1.7-1.9-8.5-24.6-18.7-7.7-6 1.7 1 2 2 1 3.5-1.6 2.4-1.8-.3-2.5-.7-5.3-3.1-10.1-9-16.5-5.3-10.4-.6-14.4 18.3-25.9 9.4-2.9-2.8.5-6 0-9 2.7-2.7 10.3.2 12.8-3.5 1.9-3.1-1.9-4.4-4-6 7.5-1.5 12.8-7.4 20.1-9.3.3 0 .2-2 .7-2.6 4.5-7.1 1.2 5.8 18.9 1.3.5 0 1.5-.2 1.5-.4 1.2-7.1 10.3-6.3 15.2-8.8-3-4.6-17.2 3.4-10.4-6.8.6-.6 4.7-3.1 2.8-3.8-3.9.2-6.3 2.9-9.1 4.9-7.8 2.4 4.8 4.8-6.4 11.8-2.8.8-6 2.5-6.7-2.5-1.3-5.5-7.4 4.3-9.6-2.6-2.7-7.6 11.3-12.1 16.3-15.8 13.9-6.1 31-4.3 44.2 2-.4 1.4-7.3 1.5-8.4 1.7-5.4 2.3 6.2 4.6 7.3 1.6 1.6-3.5 8.3.3 6.6-4.6l2.8-1.5c1.2 5.2 4.8 1.2 7 1.4 10.9-.5 21.1-4 32-1.2-4.9-5 4.8-11.4 7.6-6-1.1 2.9 2.2 6.6-1.7 8.8-1.4 4 2.9.2 4.2-.8 2.7-1 12.3-1.7 4.3-4-3.9 2.2-5.5-1.7-3.1-4 4.5 4.7 2.4-5.3 12.6 2l2.8 1c-.1-2.4-6.3-4.6-2.8-5.5 16.1-4 35.4-7.8 51.5-5.4 1.8-.1 4.6 0 2.8 3.5 5.2 3 13.8 3 20.2 1.5 7.1-2.7 5 2.3 9.2 4.8 5.6-.8 24.3-.7 12.1-8.4 3.5-1.3 7.7-.4 11.2.6-1.2.9-3.7 3.2-1.1 4 8.8 1.6 24.6 4.9 33.3 6 .6 0 12.4 1 12.5 1.2 3.9-3.7 8.2-.2 12.2-1 3.6-.6 4.5 1.4 5 4.9.4 2.6-3.6 4.2-1 6.8l-.1-.1Zm-238 36.8c-1.5-3-4.8-4.5-6.8-6.6-1-2.3-2-2.4-3.4-.6-3.6 6-6-5.3-9.5 0-12.2 13.4 8.1 4.5 14.6 8.4 1.1.3 4.1-.8 5.2-1.2h-.1Zm16.3-5.6c18.6-3.3-14.5-7.6-6.8 2.6.9 2.7 7.7 3.5 4 6.3-7.5 5.2 12.1 9 7.9 1.3-1.3-3.3-3.5-7-5.1-10.2Zm164.7 108.2c-2.4-3.6-4-7.4-7.2-10.6 2.2 14.8-9.8 11-9.7 2.8-.9-3.1-7.3-2.1-9.4-1.3-2.7 1.5-4.2 5.3-8.3 2.6-5 4.7-8.5 10.6-16.5 11.3-8.4.8-4.7 13.2-2 18 1.4 3-2.8 9 2.9 8.2 10.8-.1 21.8-15 30.2-2.7 3.5 2.3 4.2-5.5 8.4 2.9 14.2 19.3 35.6-13.2 11.6-31.2Zm-24.5-30c-2.5 1 1.9 4.8 3 6 3.1 2.2 8.6 1 9.3 7 6.8 7.4 8.2-6.2 14.5 3.2 12.9 5.2-9.5-16.5-26.8-16.2Zm17.4-77.5c-1.6.7-3.3 3-3.7 4.9-.4 15.3-16.9 6-17.4 16.2 3.1 2.3 6.8-1.6 10.1-2.3 8.1-2.6 9.6-4.5 9.4-12.7 0-.7 1-1.7 1.7-2 8.5-1 6.9-3.8-.1-4.1ZM483.7 165c-15.5 1.2-8.4-13.3-18.5-1.2-3.1 4.7 23.7 5 21.5 4.2 0 0 6.3-4.3-3-3Zm-21 3.4c-2.6-1-2.7-.7-2.2-3.4-1.3-12.3-12.1-2.6 2.1 7.4 3.2 2.4 8.9-1.6 6.7-1.6s-4.1-1.4-6.7-2.4h.1Zm47.8 0c-1.4-2-9.5-24.6-12.3-2.2 1 5.8 12.3 2.2 12.3 2.2Z"
fill="#BCC4CC" />
<path d="m560.7 90.5-54 15.5-56 62-56-43.5-62.5 114-114-130.5" stroke="#2563EB" />
<path d="M17.7 106 66 94l64.7 71.5 69-80 27 32.5" stroke="#BFC9D4" stroke-dasharray="4 4" />
<path
d="M450.7 172a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm110-78a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-54 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-112 19a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-62.4 113a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"
fill="#0C1F29" />
<path
d="M199.7 90a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-69 79a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM66 98a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-48.3 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"
fill="#B5BCC4" />
<path d="M227.7 137a17 17 0 1 0 0-34 17 17 0 0 0 0 34Z" fill="#2563EB" />
<path
d="M232.7 111v5l-5-2.2-5 2.2v-5h4v-2h2v2h4Zm-6 13.7c.6.4 1.4.4 2 0 1.3-1 3-1 4.2-.1l1.8-5.6-7-3-7 3 1.8 5.6a4 4 0 0 1 4.2 0Zm6.4 2c.6.4 1.4.4 2 0 .8-.6 1.7-.8 2.6-.7v2c-.5 0-1 0-1.4.3-1.3 1-3 1-4.4 0-.6-.4-1.4-.4-2 0-1.3 1-3 1-4.4 0-.6-.4-1.4-.4-2 0-1.3 1-3 1-4.4 0-.4-.3-1-.4-1.4-.2v-2c.9-.2 1.8 0 2.6.6.6.4 1.4.4 2 0 1.3-1 3-1 4.4 0 .6.4 1.4.4 2 0 1.3-1 3-1 4.4 0Z"
fill="#fff" />
<path
d="M240 95.5c0-6.3 5-11.5 11-11.5h83c6.1 0 11 5.1 11 11.5s-4.9 11.5-11 11.5h-92a2 2 0 0 1-2-2v-9.5Z"
fill="#2563EB" /><text fill="#fff" xml:space="preserve" style="white-space:pre"
font-family="Inter" font-size="12" letter-spacing="0em">
<tspan x="249.7" y="99.9">AXYZ9830698</tspan>
</text>
</svg>
</div>
<!-- Col 2 -->
<div class="relative z-20">
<h2>Our mission</h2>
<p>Traficero is a global logistics platform that makes tracking and tracing shipping containers easy
as a breeze.</p>
<p>We provide a simple and reliable service for the global logistics industry that allows you to
track all your freight shipments online.</p>
<p>Our tracking system integrated with ocean carriers allows you to determine the current position
of containers on the world map.</p>
<p>We want to help you out with your shipping needs by providing an easy way to trace containers
from origin to destination.</p>
</div>
</div>
</div>
</section>
<footer class="mt-auto py-8 z-10 bg-slate-100">
<div class="py-4 relative z-20">
<div class="container flex flex-wrap justify-between items-center gap-3">
<a href=http://laravel.test class="order-1 flex w-8 h-8 overflow-hidden sm:w-28"
title="Traficero - Home">
<!-- Logo icon -->
<svg viewBox="0 0 36 36">
<path d="M13.8 25.4 0 15.4v10.3L13.8 36 36 20.2V9.7L13.8 25.4Z" fill="#2563EB" />
<path class="css-logo-swap-color" d="m0 15.4 13.8 10L36 9.6 22.2 0 0 15.4Z" fill="#E7EEF6" />
</svg>
<!-- Logo text visible only desktop -->
<svg class="hidden sm:block" viewBox="0 0 87 36">
<path
d="M13.2 23H16v-2h-2c-.3 0-.5-.3-.5-.7v-5.1h2.7V13h-2.7v-3H11v3H8.5v2.2H11v5.6c0 1.3.9 2.2 2.2 2.2Zm4.7 0h2.5v-5.6c0-1.4 1-2.1 2.2-2.1H24V13h-1.2c-1 0-1.7.4-2 1.2h-.3v-1.1H18V23Zm10.2.3c2 0 2.7-1.1 2.9-1.6h.4c0 .8.7 1.3 1.7 1.3h1.6v-2H34c-.3 0-.5-.3-.5-.7v-3.7c0-2.5-1.7-3.8-4.3-3.8-2.5 0-3.8 1.3-4.3 2.8l2.3.8c.2-1 .7-1.6 2-1.6s1.8.7 1.8 1.6v.6h-2.7c-2.2 0-3.8 1-3.8 3.1 0 2 1.6 3.2 3.7 3.2Zm.4-2c-1 0-1.6-.6-1.6-1.3 0-.7.6-1.1 1.5-1.1h2.5v.2c0 1.3-1 2.1-2.4 2.1ZM37 23h2.5v-7.8H42V13h-2.6v-1.4c0-.4.2-.6.6-.6h1.7V9h-2.6c-1.3 0-2.2.9-2.2 2.2v1.9h-2.5v2h2.5V23Zm7.2-11c.9 0 1.6-.7 1.6-1.7S45 8.7 44 8.7s-1.7.7-1.7 1.6c0 1 .7 1.6 1.7 1.6Zm-1.3 11h2.5V13h-2.5v10Zm9.4.3a5 5 0 0 0 5-3.8l-2.5-.6c-.2 1.3-1 2.1-2.5 2.1s-2.6-1-2.6-2.9V18c0-1.8 1.1-2.9 2.6-2.9 1.6 0 2.3 1 2.5 2.2l2.4-.6c-.4-2.2-2-3.8-5-3.8-2.8 0-5 1.9-5 5.1v.3c0 3.2 2.2 5 5 5Zm11 0c2.7 0 3.9-1.6 4.4-2.6l-2-1.1c-.4.8-1 1.5-2.4 1.5s-2.4-1-2.5-2.3H68v-.9c0-3-1.9-5.1-4.8-5.1-3 0-5 2-5 5.1v.3c0 3 2 5 5 5Zm-2.5-6.4c.2-1.1 1-1.9 2.4-1.9 1.3 0 2.2.8 2.3 1.9h-4.7Zm8.9 6.1H72v-5.6c0-1.4 1-2.1 2.2-2.1h1.2V13h-1.2c-.9 0-1.6.4-1.9 1.2H72v-1.1h-2.5V23Zm11.7.3c3 0 5.2-1.9 5.2-5.1v-.3c0-3.2-2.3-5.1-5.2-5.1-3 0-5.2 1.9-5.2 5v.4c0 3.2 2.2 5 5.2 5Zm0-2.3c-1.6 0-2.7-1-2.7-2.9V18c0-1.8 1.1-2.9 2.7-2.9 1.5 0 2.7 1 2.7 3v.1c0 1.9-1.2 3-2.7 3Z"
fill="#0F172A" />
</svg>
</a>
<form method="POST" action=http://laravel.test/track
class="order-2 flex flex-initial basis-36 grow mr-auto max-w-xs">
<input type="hidden" name="_token" value="yQYlIHnnxPhQ9V1zouNL1EUnfEXMAypRVX4FoRcG"> <input
type="text" name="container_number" class="shadow-inner w-full max-w-none pr-10"
placeholder="Track container number" value="" required>
<button type="submit"
class="-ml-10 w-10 flex justify-center items-center rounded-r group hover:bg-blue-600"
title="Track">
<svg alt="Icon" width="20" height="20" class="group-hover:invert"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#0f172a"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-search">
<circle cx="11" cy="11" r="8" />
<path d="m21 21-4-4" />
</svg> </button>
</form>
<div class="order-last mb-3 lg:mt-3 lg:ml-6">
<div class="flex gap-4">
<a href="https://www.facebook.com/traficero" target="_blank" title="Facebook">
<svg alt="Icon" width="20" height="20" width="20" height="21" viewBox="0 0 20 21"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.2628 8.16901H11.5658V6.40018C11.5658 5.7359 12.0061 5.58103 12.3162 5.58103C12.6256 5.58103 14.2194 5.58103 14.2194 5.58103V2.66074L11.5983 2.65051C8.68857 2.65051 8.02641 4.82856 8.02641 6.22238V8.16901H6.34366V11.1782H8.02641C8.02641 15.04 8.02641 19.6932 8.02641 19.6932H11.5658C11.5658 19.6932 11.5658 14.9942 11.5658 11.1782H13.9541L14.2628 8.16901Z"
fill="#819199" />
</svg> </a>
<a href="https://www.linkedin.com/company/traficero/" target="_blank" title="LinkdeIn">
<svg alt="Icon" width="20" height="20" width="20" height="21" viewBox="0 0 20 21"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.6084 10.0606V10.0334C10.6028 10.0426 10.5968 10.0518 10.5908 10.0606H10.6084Z"
fill="#819199" />
<path
d="M17.3796 2.14636H2.52059C1.8094 2.14636 1.2326 2.70939 1.2326 3.40331V18.4362C1.2326 19.1298 1.8094 19.6928 2.52059 19.6928H17.3796C18.0918 19.6928 18.6686 19.1294 18.6686 18.4362V3.40331C18.6686 2.70904 18.0915 2.14636 17.3796 2.14636ZM6.51756 16.8349H3.88408V8.91192H6.51756V16.8349ZM5.201 7.8296H5.18336C4.3 7.8296 3.7285 7.22106 3.7285 6.46083C3.7285 5.68366 4.31764 5.09205 5.21828 5.09205C6.11927 5.09205 6.67349 5.68366 6.69113 6.46083C6.69113 7.22106 6.11892 7.8296 5.201 7.8296ZM16.014 16.8349H13.3805V12.5953C13.3805 11.5306 12.9995 10.8039 12.0466 10.8039C11.3192 10.8039 10.886 11.2939 10.6951 11.7673C10.6257 11.9363 10.6087 12.1726 10.6087 12.4097V16.8346H7.97524C7.97524 16.8346 8.00981 9.65417 7.97524 8.91157H10.6087V10.0331C10.9587 9.4933 11.5845 8.7246 12.9826 8.7246C14.715 8.7246 16.0143 9.85737 16.0143 12.2912V16.8349H16.014Z"
fill="#819199" />
</svg> </a>
<a href="https://twitter.com/traficero" target="_blank" title="Twitter">
<svg alt="Icon" width="20" height="20" width="20" height="21" viewBox="0 0 20 21"
fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18.6397 5.81463C18.0008 6.09862 17.3133 6.29018 16.5919 6.3759C17.3285 5.93493 17.8933 5.23643 18.1596 4.40317C17.4706 4.81204 16.7079 5.10873 15.8955 5.26889C15.2453 4.57603 14.3186 4.14282 13.293 4.14282C11.3242 4.14282 9.72787 5.73914 9.72787 7.70834C9.72787 7.98739 9.75927 8.25938 9.8203 8.52079C6.85697 8.37192 4.22948 6.95269 2.47089 4.79546C2.16397 5.3218 1.98829 5.93422 1.98829 6.58827C1.98829 7.82511 2.61765 8.9166 3.57438 9.55584C2.99018 9.53714 2.4402 9.37663 1.95936 9.10957C1.95901 9.12439 1.95901 9.13956 1.95901 9.15473C1.95901 10.8819 3.18809 12.3227 4.81933 12.6508C4.52017 12.7319 4.20514 12.7756 3.87988 12.7756C3.64987 12.7756 3.42656 12.7534 3.2089 12.7114C3.66292 14.1278 4.97949 15.159 6.53947 15.1876C5.31921 16.144 3.78216 16.714 2.11141 16.714C1.8239 16.714 1.53991 16.6971 1.26086 16.6639C2.83919 17.6761 4.71314 18.2659 6.72644 18.2659C13.2849 18.2659 16.8709 12.8331 16.8709 8.12144C16.8709 7.96693 16.8677 7.81276 16.861 7.65966C17.5574 7.15801 18.1621 6.52971 18.6397 5.81463Z"
fill="#819199" />
</svg> </a>
</div>
</div>
<nav
class="flex order-4 md:order-3 justify-between content-center items-center mt-3 mb-5 sm:mb-3 -mx-3 md:mx-0 lg:w-auto lg:mx-4">
<ul class="flex flex-nowrap overflow-y-visible overflow-x-auto pr-6 sm:pr-0">
<li>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 hover:bg-slate-200/50 px-3 text-sm md:text-base"
href="http://laravel.test/carriers">
Carriers
</a>
</li>
<li>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 hover:bg-slate-200/50 px-3 text-sm md:text-base"
href="#">
FAQ
</a>
</li>
<li>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 hover:bg-slate-200/50 px-3 text-sm md:text-base"
href="#">
Pricing
</a>
</li>
<li>
<a class="px-4 py-2 rounded-md inline-flex items-center justify-center gap-2 no-underline leading-tight whitespace-nowrap transition-colors disabled:opacity-50 hover:bg-slate-200/50 px-3 text-sm md:text-base"
href="http://laravel.test/about">
About
</a>
</li>
</ul>
</nav>
</div>
</div>
<div class="container mt-8 flex text-sm flex-col md:flex-row gap-4 text-slate-600 md:justify-between">
<p>&copy; All rights reserved</p>
<nav>
<a href=http://laravel.test/privacy>Privacy policy</a>
&nbsp;
<a href=http://laravel.test/terms>Terms and conditions</a>
</nav>
</div>
</footer>
</body>
</html>
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// AB https://github.com/xdebug/vscode-php-debug
"version": "0.2.0",
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9003,
"pathMappings": {
"/var/www/html/": "${workspaceRoot}"
},
"hostname": "localhost",
"ignore":[
"**/vendor/**/*.php"
]
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 0,
// "runtimeExecutable": "php",
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"env": {
"XDEBUG_MODE": "debug,develop",
"XDEBUG_CONFIG": "client_port=${port}"
}
},
{
"name": "Launch Built-in web server",
"type": "php",
"request": "launch",
"runtimeArgs": [
"-dxdebug.mode=debug",
"-dxdebug.start_with_request=yes",
"-S",
"localhost:0"
],
"program": "",
"cwd": "${workspaceRoot}",
"port": 9003,
"serverReadyAction": {
"pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment