chore: Add initial project files and configurations
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
||||
Dockerfile
|
||||
README.md
|
24
.gitignore
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
# build output
|
||||
dist/
|
||||
|
||||
# generated types
|
||||
.astro/
|
||||
|
||||
# dependencies
|
||||
node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
||||
|
||||
# jetbrains setting folder
|
||||
.idea/
|
4
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"recommendations": ["astro-build.astro-vscode"],
|
||||
"unwantedRecommendations": []
|
||||
}
|
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"command": "./node_modules/.bin/astro dev",
|
||||
"name": "Development server",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
3
Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM nginxinc/nginx-unprivileged:alpine
|
||||
LABEL org.opencontainers.image.source https://gianet.us/codyops/apex
|
||||
COPY dist /usr/share/nginx/html
|
10
README.md
Normal file
@ -0,0 +1,10 @@
|
||||
# APEX (codyops.com)
|
||||
|
||||
## Style
|
||||
|
||||
We use [Bootstrap 5.3](https://getbootstrap.com/docs/5.3/) for CSS and for Icons also [Bootstrap Icons 1.11](https://github.com/twbs/icons/releases/tag/v1.11.3)
|
||||
|
||||
## Assets
|
||||
|
||||
All flags are from [Country Flags](https://www.countryflags.com/)
|
||||
|
5
astro.config.mjs
Normal file
@ -0,0 +1,5 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({});
|
202
index.html
Normal file
@ -0,0 +1,202 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="es" dir="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- <meta name="description" content='' /> -->
|
||||
<title>CodyOps</title>
|
||||
<link rel="shortcut icon" href="./favicon.svg">
|
||||
<link rel="alternate" href="https://codyops.com/" hreflang="es" />
|
||||
<link rel="alternate" href="https://codyops.com.es/" hreflang="es-ES" />
|
||||
<link rel="alternate" href="https://codyops.com.br/" hreflang="pt-BR" />
|
||||
<link rel="stylesheet" href="./assets/css/bootstrap-icons.min.css" />
|
||||
<link rel="stylesheet" href="./assets/css/bootstrap.min.css"/>
|
||||
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=G-5WP8N9VYNH"></script> -->
|
||||
<!-- <script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-5WP8N9VYNH');</script> -->
|
||||
</head>
|
||||
<body style="background-color: #18181B;">
|
||||
<header id="header" class="navbar navbar-expand">
|
||||
<div class="container">
|
||||
<nav class="navbar-nav">
|
||||
<a class="navbar-brand" href="/" aria-label="CodyOps">
|
||||
<img width="120" src="./assets/svg/codyops.svg" alt="Logo">
|
||||
</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container my-2">
|
||||
<div class="text-center mx-md-auto mb-5">
|
||||
<span class="text-uppercase text-white">Selector</span>
|
||||
<h2 class="h2 text-white">Escoja su País – Choose your Country - Escolha seu País</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://ar.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/ar.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Argentina</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://cl.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/cl.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Chile</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://co.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/co.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Colombia</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://cr.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/cr.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Costa Rica</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://do.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/do.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Dominicana</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://ec.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/ec.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Ecuador</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://mx.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/mx.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">México</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://pa.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/pa.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Panamá</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://py.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/py.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Paraguay</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://pe.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/pe.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Perú</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://sv.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/sv.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">El Salvador</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://uy.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<img class="img-fluid img-thumbnail" src="./assets/img/uy.webp" alt="Logo">
|
||||
</div>
|
||||
<h2 class="card-title text-white">Uruguay</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="position-absolute start-0 end-0">
|
||||
<div class="container pb-5">
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-sm mb-3 mb-sm-0">
|
||||
<p class="small mb-0 text-white">© 2023 ~ CodyOps - All rights reserved</p>
|
||||
</div>
|
||||
<div class="col-sm-auto">
|
||||
<ul class="list-inline mb-0">
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.linkedin.com/company/codyops">
|
||||
<i class="bi-linkedin text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.facebook.com/codyopslatam">
|
||||
<i class="bi-facebook text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.instagram.com/codyopslatam">
|
||||
<i class="bi-instagram text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.youtube.com/@codyopslatam">
|
||||
<i class="bi-youtube text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://wa.me/13072228690">
|
||||
<i class="bi-whatsapp text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="./assets/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
5090
package-lock.json
generated
Normal file
16
package.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "apex-astro",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"build": "astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^5.1.7",
|
||||
"bootstrap": "^5.3.3",
|
||||
"bootstrap-icons": "^1.11.3"
|
||||
}
|
||||
}
|
BIN
src/assets/img/argentina-flag-square-medium.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
src/assets/img/brazil-flag-square-medium.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
src/assets/img/chile-flag-square-medium.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
src/assets/img/colombia-flag-square-medium.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
src/assets/img/costa-rica-flag-square-medium.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
src/assets/img/dominican-republic-flag-square-medium.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
src/assets/img/ecuador-flag-square-medium.png
Normal file
After Width: | Height: | Size: 180 KiB |
BIN
src/assets/img/el-salvador-flag-square-medium.png
Normal file
After Width: | Height: | Size: 102 KiB |
BIN
src/assets/img/mexico-flag-square-medium.png
Normal file
After Width: | Height: | Size: 84 KiB |
BIN
src/assets/img/panama-flag-square-medium.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
src/assets/img/paraguay-flag-square-medium.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
src/assets/img/peru-flag-square-medium.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
src/assets/img/spain-flag-square-medium.png
Normal file
After Width: | Height: | Size: 114 KiB |
BIN
src/assets/img/united-states-of-america-flag-square-medium.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
src/assets/img/uruguay-flag-square-medium.png
Normal file
After Width: | Height: | Size: 72 KiB |
7
src/assets/js/bootstrap.min.js
vendored
Normal file
1
src/assets/js/bootstrap.min.js.map
Normal file
112
src/assets/svg/codyops.svg
Normal file
@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.5.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 500 100" style="enable-background:new 0 0 500 100;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#18181B;}
|
||||
.st1{fill:none;}
|
||||
.st2{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Capa_2">
|
||||
<rect class="st0" width="500" height="100"/>
|
||||
</g>
|
||||
<g id="Capa_3">
|
||||
</g>
|
||||
<g id="Capa_1">
|
||||
<g>
|
||||
<g>
|
||||
<rect x="162.75" y="27.49" class="st1" width="324.11" height="46.52"/>
|
||||
<path class="st2" d="M167.37,50.37c0-14.04,10.14-23.64,22.81-23.64c6.44,0,11.85,2.54,15.9,7.19l-1.71,1.51
|
||||
c-3.22-4.04-8.5-6.65-14.18-6.65c-11.44,0-20.42,8.7-20.42,21.58c0,12.74,8.98,21.58,20.42,21.58c5.69,0,10.96-2.6,14.18-6.65
|
||||
l1.78,1.44c-4.32,4.86-9.52,7.26-15.96,7.26C177.51,74.01,167.37,64.42,167.37,50.37z"/>
|
||||
<path class="st2" d="M213.07,50.37c0-13.22,8.43-23.64,21.72-23.64c13.22,0,21.72,10.41,21.72,23.64
|
||||
c0,13.22-8.5,23.64-21.72,23.64C221.49,74.01,213.07,63.59,213.07,50.37z M254.11,50.37c0-12.54-7.61-21.58-19.32-21.58
|
||||
c-11.85,0-19.32,9.04-19.32,21.58c0,12.4,7.47,21.58,19.32,21.58C246.5,71.95,254.11,62.77,254.11,50.37z"/>
|
||||
<path class="st2" d="M266.98,73.19v-45.7h13.57c14.18,0,22.75,10.69,22.75,22.88c0,12.33-8.56,22.81-22.75,22.81H266.98z
|
||||
M300.89,50.37c0-11.44-7.4-20.83-20.35-20.83h-11.37v41.59h11.37C293.5,71.13,300.89,61.95,300.89,50.37z"/>
|
||||
<path class="st2" d="M324.87,73.19v-19.8l-18.36-25.9h2.81l16.65,23.7l16.65-23.7h2.81l-18.36,25.9v19.8H324.87z"/>
|
||||
<path class="st2" d="M348.09,50.37c0-14.04,10.89-23.64,25.01-23.64s25.01,9.59,25.01,23.64c0,14.04-10.89,23.64-25.01,23.64
|
||||
S348.09,64.42,348.09,50.37z M384.06,50.37c0-6.37-4.32-11.44-10.96-11.44S362.14,44,362.14,50.37c0,6.37,4.32,11.44,10.96,11.44
|
||||
S384.06,56.74,384.06,50.37z"/>
|
||||
<path class="st2" d="M403.04,73.19v-45.7h24.39c10.69,0,16.44,7.12,16.44,15.69c0,8.5-5.76,15.62-16.44,15.62h-10.55v14.39
|
||||
H403.04z M429.82,43.18c0-2.47-1.85-3.63-4.18-3.63h-8.77v7.19h8.77C427.97,46.74,429.82,45.58,429.82,43.18z"/>
|
||||
<path class="st2" d="M444.89,66.75l7.19-10.28c3.43,3.29,8.56,5.89,14.73,5.89c2.6,0,5.07-0.68,5.07-2.47
|
||||
c0-4.38-25.49,0.07-25.49-17.95c0-7.74,6.44-15.14,18.98-15.14c7.47,0,14.18,2.12,19.39,6.37l-7.4,9.8
|
||||
c-3.97-3.01-9.11-4.52-13.43-4.52c-2.74,0-3.49,0.89-3.49,2.06c0,4.32,25.42,0.62,25.42,17.61c0,10.07-7.47,15.89-19.73,15.89
|
||||
C456.4,74.01,449.76,71.13,444.89,66.75z"/>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M36.56,32.25c0.46,0.03,0.98,0.07,1.5,0.12c0.48,0.05,0.79-0.16,1.02-0.57c0.3-0.55,0.61-1.1,0.93-1.63
|
||||
c0.27-0.45,0.22-0.85-0.07-1.26c-0.33-0.45-0.66-0.9-0.97-1.36c-0.39-0.58-0.35-0.92,0.17-1.36c0.55-0.48,1.11-0.95,1.68-1.42
|
||||
c0.49-0.4,0.88-0.39,1.34,0.04c0.41,0.38,0.8,0.78,1.19,1.18c0.37,0.38,0.77,0.49,1.27,0.28c0.59-0.25,1.2-0.47,1.8-0.68
|
||||
c0.45-0.16,0.65-0.5,0.68-0.95c0.04-0.54,0.08-1.08,0.11-1.61c0.04-0.67,0.27-0.9,0.94-0.91c0.8-0.01,1.6-0.01,2.4,0
|
||||
c0.6,0.01,0.81,0.21,0.87,0.8c0.06,0.61,0.12,1.21,0.18,1.82c0.04,0.43,0.27,0.7,0.68,0.84c0.64,0.22,1.28,0.44,1.92,0.68
|
||||
c0.43,0.16,0.78,0.06,1.09-0.25c0.43-0.43,0.85-0.87,1.29-1.29c0.4-0.39,0.77-0.42,1.21-0.08c0.63,0.49,1.25,1.01,1.85,1.53
|
||||
c0.42,0.37,0.46,0.73,0.15,1.2c-0.32,0.5-0.67,0.98-1.01,1.46c-0.27,0.38-0.32,0.76-0.08,1.17c0.34,0.59,0.68,1.17,1.03,1.76
|
||||
c0.22,0.38,0.55,0.56,1,0.51c0.54-0.06,1.07-0.11,1.61-0.18c0.72-0.1,1.07,0.1,1.21,0.8c0.16,0.8,0.28,1.61,0.38,2.42
|
||||
c0.05,0.44-0.13,0.77-0.61,0.9c-0.59,0.15-1.17,0.33-1.76,0.48c-0.49,0.12-0.73,0.44-0.81,0.91c-0.11,0.65-0.21,1.3-0.32,1.95
|
||||
c-0.07,0.42,0.08,0.75,0.43,0.99c0.47,0.32,0.95,0.64,1.42,0.98c0.62,0.45,0.69,0.76,0.32,1.41c-0.34,0.59-0.67,1.18-1.01,1.77
|
||||
c-0.43,0.73-0.66,0.8-1.44,0.46c-0.51-0.22-1.01-0.46-1.52-0.7c-0.39-0.19-0.74-0.15-1.07,0.13c-0.53,0.45-1.07,0.89-1.59,1.35
|
||||
c-0.32,0.27-0.43,0.61-0.31,1.03c0.15,0.5,0.27,1.01,0.41,1.51c0.25,0.87,0.06,1.21-0.78,1.5c-0.59,0.2-1.17,0.45-1.77,0.64
|
||||
c-0.79,0.24-1.06,0.1-1.41-0.63c-0.22-0.47-0.45-0.94-0.66-1.42c-0.2-0.44-0.54-0.6-1-0.59c-0.64,0.02-1.28,0.02-1.92,0.01
|
||||
c-0.46,0-0.8,0.16-1,0.6c-0.24,0.54-0.5,1.07-0.74,1.61c-0.18,0.41-0.5,0.63-0.92,0.51c-0.9-0.25-1.79-0.54-2.67-0.87
|
||||
c-0.45-0.17-0.46-0.63-0.37-1.04c0.12-0.56,0.26-1.12,0.43-1.66c0.16-0.51,0.01-0.88-0.38-1.2c-0.48-0.4-0.98-0.79-1.45-1.2
|
||||
c-0.39-0.34-0.8-0.37-1.25-0.15c-0.51,0.26-1.03,0.51-1.55,0.74c-0.57,0.25-0.91,0.14-1.23-0.39C37,44.29,36.62,43.65,36.25,43
|
||||
c-0.31-0.54-0.21-0.94,0.29-1.31c0.45-0.33,0.9-0.65,1.37-0.96c0.43-0.29,0.59-0.67,0.5-1.17c-0.12-0.65-0.26-1.3-0.37-1.95
|
||||
c-0.08-0.46-0.36-0.7-0.78-0.81c-0.57-0.15-1.14-0.3-1.72-0.44c-0.45-0.11-0.72-0.38-0.66-0.85c0.11-0.9,0.23-1.79,0.4-2.68
|
||||
C35.38,32.32,35.66,32.22,36.56,32.25z M42.73,36.4c0,3.69,2.98,6.71,6.64,6.71c3.67,0,6.71-3.02,6.72-6.66
|
||||
c0.01-3.69-3.02-6.74-6.69-6.74C45.72,29.71,42.73,32.71,42.73,36.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M74.45,32.24c0.46,0.03,0.98,0.07,1.5,0.12c0.48,0.05,0.79-0.16,1.02-0.57c0.3-0.55,0.61-1.1,0.93-1.63
|
||||
c0.27-0.45,0.22-0.85-0.07-1.26c-0.33-0.45-0.66-0.9-0.97-1.36c-0.39-0.58-0.35-0.92,0.17-1.36c0.55-0.48,1.11-0.95,1.68-1.42
|
||||
c0.49-0.4,0.88-0.39,1.34,0.04c0.41,0.38,0.8,0.78,1.19,1.18c0.37,0.38,0.77,0.49,1.27,0.28c0.59-0.25,1.2-0.47,1.8-0.68
|
||||
c0.45-0.16,0.65-0.5,0.68-0.95c0.04-0.54,0.08-1.08,0.11-1.61c0.04-0.67,0.27-0.9,0.94-0.91c0.8-0.01,1.6-0.01,2.4,0
|
||||
c0.6,0.01,0.81,0.21,0.87,0.8c0.06,0.61,0.12,1.21,0.18,1.82c0.04,0.43,0.27,0.7,0.68,0.84c0.64,0.22,1.28,0.44,1.92,0.68
|
||||
c0.43,0.16,0.78,0.06,1.09-0.25c0.43-0.43,0.85-0.87,1.29-1.29c0.4-0.39,0.77-0.42,1.21-0.08c0.63,0.49,1.25,1.01,1.85,1.53
|
||||
c0.42,0.37,0.46,0.73,0.15,1.2c-0.32,0.5-0.67,0.98-1.01,1.46c-0.27,0.38-0.32,0.76-0.08,1.17c0.34,0.59,0.68,1.17,1.03,1.76
|
||||
c0.22,0.38,0.55,0.56,1,0.51c0.54-0.06,1.07-0.11,1.61-0.18c0.72-0.1,1.07,0.1,1.21,0.8c0.16,0.8,0.28,1.61,0.38,2.42
|
||||
c0.05,0.44-0.13,0.77-0.61,0.9c-0.59,0.15-1.17,0.33-1.76,0.48c-0.49,0.12-0.73,0.44-0.81,0.91c-0.11,0.65-0.21,1.3-0.32,1.95
|
||||
c-0.07,0.42,0.08,0.75,0.43,0.99c0.47,0.32,0.95,0.64,1.42,0.98c0.62,0.45,0.69,0.76,0.32,1.41c-0.34,0.59-0.67,1.18-1.01,1.77
|
||||
c-0.43,0.73-0.66,0.8-1.44,0.46c-0.51-0.22-1.01-0.46-1.52-0.7c-0.39-0.19-0.74-0.15-1.07,0.13c-0.53,0.45-1.07,0.89-1.59,1.35
|
||||
c-0.32,0.27-0.43,0.61-0.31,1.03c0.15,0.5,0.27,1.01,0.41,1.51c0.25,0.87,0.06,1.21-0.78,1.5c-0.59,0.2-1.17,0.45-1.77,0.64
|
||||
c-0.79,0.24-1.06,0.1-1.41-0.63c-0.22-0.47-0.45-0.94-0.66-1.42c-0.2-0.44-0.54-0.6-1-0.59c-0.64,0.02-1.28,0.02-1.92,0.01
|
||||
c-0.46,0-0.8,0.16-1,0.6c-0.24,0.54-0.5,1.07-0.74,1.61c-0.18,0.41-0.5,0.63-0.92,0.51c-0.9-0.25-1.79-0.54-2.67-0.87
|
||||
c-0.45-0.17-0.46-0.63-0.37-1.04c0.12-0.56,0.26-1.12,0.43-1.66c0.16-0.51,0.01-0.88-0.38-1.2c-0.48-0.4-0.98-0.79-1.45-1.2
|
||||
c-0.39-0.34-0.8-0.37-1.25-0.15c-0.51,0.26-1.03,0.51-1.55,0.74c-0.57,0.25-0.91,0.14-1.23-0.39c-0.39-0.64-0.77-1.28-1.14-1.94
|
||||
c-0.31-0.54-0.21-0.94,0.29-1.31c0.45-0.33,0.9-0.65,1.37-0.96c0.43-0.29,0.59-0.67,0.5-1.17c-0.12-0.65-0.26-1.3-0.37-1.95
|
||||
c-0.08-0.46-0.36-0.7-0.78-0.81c-0.57-0.15-1.14-0.3-1.72-0.44c-0.45-0.11-0.72-0.38-0.66-0.85c0.11-0.9,0.23-1.79,0.4-2.68
|
||||
C73.27,32.31,73.55,32.21,74.45,32.24z M80.62,36.38c0,3.69,2.98,6.71,6.64,6.71c3.67,0,6.71-3.02,6.72-6.66
|
||||
c0.01-3.69-3.02-6.74-6.69-6.74C83.61,29.69,80.62,32.7,80.62,36.38z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M29.92,89.98c-6.48,0-12.56-5.63-12.56-14.91V58.93c0-3.47-1.38-6.29-4.22-6.29v-6.75
|
||||
c2.84,0,4.22-2.81,4.22-6.29V23.56c0-9.29,6.08-15.01,12.56-15.01h4.94v7.97h-4.94c-2.76,0-5.02,2.72-5.02,6.94v17.35
|
||||
c0,3.94-1.05,7.13-3.73,8.44c2.67,1.31,3.73,4.5,3.73,8.44v17.26c0,4.22,2.27,7.04,5.02,7.04h4.94v7.97H29.92z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M101.81,83.47h4.94c2.76,0,5.11-2.81,5.11-7.04V59.18c0-3.94,1.05-7.13,3.73-8.44
|
||||
c-2.67-1.31-3.73-4.5-3.73-8.44V24.94c0-4.22-2.35-6.94-5.11-6.94h-4.94v-7.97h4.94c6.48,0,12.56,5.72,12.56,15.01v16.04
|
||||
c0,3.47,1.38,6.29,4.21,6.29v6.75c-2.84,0-4.21,2.81-4.21,6.29v16.13c0,9.29-6.08,14.91-12.56,14.91h-4.94V83.47z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M92.04,67.16v3.93l-19.28,8.65v-4.06l15.35-6.57l-15.35-6.48v-4.06L92.04,67.16z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st2" d="M63.45,58.55v4.06L48.11,69.1l15.34,6.57v4.06l-19.28-8.65v-3.93L63.45,58.55z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.3 KiB |
22
src/assets/svg/favicon.svg
Normal file
@ -0,0 +1,22 @@
|
||||
<svg width="47" height="35" viewBox="0 0 47 35" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_986_206)">
|
||||
<path d="M175.95 0H0V35.19H175.95V0Z" fill="#18181B"/>
|
||||
<path d="M12.8656 11.3488C13.0275 11.3593 13.2105 11.3734 13.3934 11.391C13.5624 11.4086 13.6714 11.3347 13.7524 11.1904C13.858 10.9969 13.967 10.8033 14.0797 10.6168C14.1747 10.4585 14.1571 10.3177 14.055 10.1734C13.9389 10.0151 13.8228 9.8567 13.7137 9.69483C13.5764 9.49073 13.5905 9.37108 13.7735 9.21624C13.967 9.04733 14.1641 8.88194 14.3647 8.71655C14.5371 8.57579 14.6744 8.5793 14.8362 8.73062C14.9805 8.86434 15.1178 9.0051 15.255 9.14586C15.3852 9.27959 15.526 9.3183 15.7019 9.2444C15.9095 9.15642 16.1242 9.079 16.3353 9.0051C16.4937 8.9488 16.5641 8.82915 16.5746 8.6708C16.5887 8.48077 16.6028 8.29075 16.6133 8.10424C16.6274 7.86847 16.7083 7.78753 16.9441 7.78401C17.2256 7.78049 17.5072 7.78049 17.7887 7.78401C17.9998 7.78753 18.0737 7.85791 18.0948 8.06553C18.1159 8.28019 18.1371 8.49133 18.1582 8.70599C18.1722 8.85731 18.2532 8.95232 18.3975 9.00159C18.6227 9.079 18.8479 9.15642 19.0731 9.24088C19.2244 9.29718 19.3476 9.26199 19.4567 9.1529C19.608 9.00159 19.7558 8.84675 19.9106 8.69895C20.0514 8.56171 20.1816 8.55115 20.3364 8.6708C20.5581 8.84323 20.7763 9.02622 20.9874 9.20921C21.1352 9.33941 21.1493 9.46609 21.0402 9.63149C20.9276 9.80744 20.8045 9.97635 20.6848 10.1453C20.5898 10.279 20.5722 10.4127 20.6567 10.557C20.7763 10.7646 20.896 10.9687 21.0191 11.1763C21.0965 11.31 21.2127 11.3734 21.371 11.3558C21.561 11.3347 21.7476 11.3171 21.9376 11.2925C22.1909 11.2573 22.3141 11.3276 22.3634 11.574C22.4197 11.8555 22.4619 12.1405 22.4971 12.4256C22.5147 12.5804 22.4514 12.6965 22.2824 12.7423C22.0748 12.7951 21.8707 12.8584 21.6631 12.9112C21.4907 12.9534 21.4062 13.066 21.3781 13.2314C21.3393 13.4602 21.3042 13.6889 21.2654 13.9176C21.2408 14.0654 21.2936 14.1816 21.4168 14.266C21.5822 14.3786 21.7511 14.4912 21.9165 14.6109C22.1346 14.7692 22.1593 14.8783 22.0291 15.1071C21.9094 15.3147 21.7933 15.5223 21.6737 15.7299C21.5223 15.9868 21.4414 16.0114 21.1669 15.8918C20.9874 15.8144 20.8115 15.7299 20.632 15.6455C20.4948 15.5786 20.3716 15.5927 20.2555 15.6912C20.069 15.8496 19.879 16.0044 19.696 16.1663C19.5834 16.2613 19.5447 16.3809 19.5869 16.5287C19.6397 16.7047 19.6819 16.8841 19.7312 17.0601C19.8191 17.3662 19.7523 17.4859 19.4567 17.5879C19.2491 17.6583 19.045 17.7463 18.8338 17.8132C18.5558 17.8976 18.4608 17.8484 18.3376 17.5915C18.2602 17.4261 18.1793 17.2607 18.1054 17.0918C18.035 16.9369 17.9154 16.8806 17.7535 16.8841C17.5283 16.8912 17.3031 16.8912 17.0778 16.8877C16.916 16.8877 16.7963 16.944 16.7259 17.0988C16.6415 17.2888 16.55 17.4753 16.4655 17.6654C16.4022 17.8096 16.2896 17.8871 16.1418 17.8448C15.8251 17.7569 15.5119 17.6548 15.2022 17.5387C15.0439 17.4789 15.0403 17.317 15.072 17.1727C15.1142 16.9756 15.1635 16.7786 15.2233 16.5885C15.2796 16.4091 15.2268 16.2789 15.0896 16.1663C14.9207 16.0255 14.7447 15.8883 14.5793 15.744C14.4421 15.6243 14.2978 15.6138 14.1395 15.6912C13.96 15.7827 13.777 15.8707 13.594 15.9516C13.3934 16.0396 13.2738 16.0009 13.1612 15.8144C13.0204 15.5856 12.8867 15.3604 12.7565 15.1317C12.6474 14.9417 12.6826 14.8009 12.8586 14.6707C13.0169 14.5546 13.1753 14.442 13.3407 14.3329C13.492 14.2308 13.5483 14.0971 13.5166 13.9211C13.4744 13.6924 13.4251 13.4637 13.3864 13.2349C13.3583 13.0731 13.2597 12.9886 13.1119 12.9499C12.9113 12.8971 12.7108 12.8443 12.5067 12.7951C12.3483 12.7564 12.2533 12.6613 12.2744 12.496C12.3131 12.1792 12.3553 11.8661 12.4152 11.5529C12.4504 11.3734 12.5489 11.3382 12.8656 11.3488ZM15.0368 12.8091C15.0368 14.1077 16.0855 15.1704 17.3734 15.1704C18.6649 15.1704 19.7347 14.1077 19.7382 12.8267C19.7417 11.5282 18.6755 10.4549 17.384 10.4549C16.089 10.4549 15.0368 11.5106 15.0368 12.8091Z"
|
||||
fill="white"/>
|
||||
<path d="M26.199 11.3452C26.3609 11.3558 26.5439 11.3699 26.7268 11.3874C26.8958 11.405 27.0048 11.3311 27.0858 11.1869C27.1914 10.9933 27.3004 10.7998 27.413 10.6133C27.5081 10.4549 27.4905 10.3142 27.3884 10.1699C27.2723 10.0115 27.1562 9.85316 27.0471 9.69129C26.9098 9.48719 26.9239 9.36754 27.1069 9.2127C27.3004 9.04379 27.4975 8.8784 27.6981 8.71301C27.8705 8.57225 28.0078 8.57576 28.1696 8.72708C28.3139 8.8608 28.4512 9.00156 28.5884 9.14232C28.7186 9.27605 28.8594 9.31476 29.0353 9.24086C29.2429 9.15288 29.4576 9.07546 29.6687 9.00156C29.8271 8.94526 29.8975 8.82561 29.908 8.66726C29.9221 8.47723 29.9362 8.28721 29.9467 8.1007C29.9608 7.86493 30.0417 7.78399 30.2775 7.78047C30.559 7.77695 30.8406 7.77695 31.1221 7.78047C31.3332 7.78399 31.4071 7.85437 31.4282 8.06199C31.4493 8.27665 31.4705 8.48779 31.4916 8.70245C31.5056 8.85377 31.5866 8.94878 31.7309 8.99804C31.9561 9.07546 32.1813 9.15288 32.4065 9.23734C32.5578 9.29364 32.681 9.25845 32.7901 9.14936C32.9414 8.99805 33.0892 8.84321 33.244 8.69541C33.3848 8.55817 33.515 8.54761 33.6698 8.66726C33.8915 8.83969 34.1097 9.02268 34.3208 9.20567C34.4686 9.33587 34.4827 9.46255 34.3736 9.62795C34.261 9.8039 34.1379 9.97281 34.0182 10.1417C33.9232 10.2754 33.9056 10.4092 33.9901 10.5534C34.1097 10.7611 34.2294 10.9652 34.3525 11.1728C34.4299 11.3065 34.5461 11.3699 34.7044 11.3523C34.8944 11.3311 35.0809 11.3135 35.271 11.2889C35.5243 11.2537 35.6475 11.3241 35.6968 11.5704C35.7531 11.852 35.7953 12.137 35.8305 12.422C35.8481 12.5769 35.7847 12.693 35.6158 12.7387C35.4082 12.7915 35.2041 12.8549 34.9965 12.9077C34.8241 12.9499 34.7396 13.0625 34.7115 13.2279C34.6727 13.4566 34.6376 13.6854 34.5988 13.9141C34.5742 14.0619 34.627 14.178 34.7502 14.2625C34.9156 14.3751 35.0845 14.4877 35.2499 14.6073C35.468 14.7657 35.4927 14.8748 35.3625 15.1035C35.2428 15.3111 35.1267 15.5188 35.0071 15.7264C34.8557 15.9833 34.7748 16.0079 34.5003 15.8882C34.3208 15.8108 34.1449 15.7264 33.9654 15.6419C33.8282 15.5751 33.705 15.5891 33.5889 15.6877C33.4024 15.846 33.2124 16.0009 33.0294 16.1627C32.9168 16.2577 32.8781 16.3774 32.9203 16.5252C32.9731 16.7011 33.0153 16.8806 33.0646 17.0566C33.1525 17.3627 33.0857 17.4824 32.7901 17.5844C32.5825 17.6548 32.3784 17.7428 32.1672 17.8096C31.8892 17.8941 31.7942 17.8448 31.671 17.5879C31.5936 17.4225 31.5127 17.2571 31.4388 17.0882C31.3684 16.9334 31.2488 16.8771 31.0869 16.8806C30.8617 16.8876 30.6365 16.8876 30.4112 16.8841C30.2494 16.8841 30.1297 16.9404 30.0593 17.0953C29.9749 17.2853 29.8834 17.4718 29.7989 17.6618C29.7356 17.8061 29.623 17.8835 29.4752 17.8413C29.1585 17.7533 28.8453 17.6513 28.5356 17.5351C28.3773 17.4753 28.3737 17.3134 28.4054 17.1692C28.4476 16.9721 28.4969 16.775 28.5567 16.585C28.613 16.4055 28.5602 16.2753 28.423 16.1627C28.2541 16.022 28.0781 15.8847 27.9127 15.7404C27.7755 15.6208 27.6312 15.6102 27.4729 15.6877C27.2934 15.7792 27.1104 15.8671 26.9274 15.9481C26.7268 16.036 26.6072 15.9973 26.4946 15.8108C26.3573 15.5856 26.2236 15.3604 26.0934 15.1281C25.9843 14.9381 26.0195 14.7974 26.1955 14.6672C26.3538 14.551 26.5122 14.4384 26.6776 14.3293C26.8289 14.2273 26.8852 14.0936 26.8535 13.9176C26.8113 13.6889 26.762 13.4601 26.7233 13.2314C26.6952 13.0695 26.5966 12.9851 26.4488 12.9464C26.2483 12.8936 26.0477 12.8408 25.8436 12.7915C25.6852 12.7528 25.5902 12.6578 25.6113 12.4924C25.65 12.1757 25.6923 11.8625 25.7521 11.5493C25.7838 11.3699 25.8823 11.3347 26.199 11.3452ZM28.3702 12.8021C28.3702 14.1006 29.4189 15.1633 30.7068 15.1633C31.9983 15.1633 33.0681 14.1006 33.0716 12.8197C33.0751 11.5212 32.0089 10.4479 30.7174 10.4479C29.4224 10.4479 28.3702 11.5071 28.3702 12.8021Z"
|
||||
fill="white"/>
|
||||
<path d="M10.5289 31.6639C8.24859 31.6639 6.10904 29.6827 6.10904 26.4171V20.7374C6.10904 19.5164 5.62342 18.524 4.62402 18.524V16.1487C5.62342 16.1487 6.10904 15.1598 6.10904 13.9352V8.29075C6.10904 5.0216 8.24859 3.00873 10.5289 3.00873H12.2673V5.81337H10.5289C9.55766 5.81337 8.76237 6.77054 8.76237 8.25556V14.361C8.76237 15.7475 8.39287 16.8701 7.44978 17.3311C8.38935 17.792 8.76237 18.9146 8.76237 20.3011V26.3749C8.76237 27.8599 9.56118 28.8523 10.5289 28.8523H12.2673V31.6569H10.5289V31.6639Z"
|
||||
fill="white"/>
|
||||
<path d="M35.8271 29.3731H37.5655C38.5368 29.3731 39.3637 28.3842 39.3637 26.8957V20.8254C39.3637 19.4389 39.7332 18.3164 40.6763 17.8554C39.7368 17.3944 39.3637 16.2718 39.3637 14.8854V8.77637C39.3637 7.29135 38.5368 6.33418 37.5655 6.33418H35.8271V3.52954H37.5655C39.8458 3.52954 41.9854 5.54241 41.9854 8.81156V14.456C41.9854 15.6771 42.471 16.6695 43.4669 16.6695V19.0448C42.4675 19.0448 41.9854 20.0337 41.9854 21.2583V26.9344C41.9854 30.2036 39.8458 32.1812 37.5655 32.1812H35.8271V29.3731Z"
|
||||
fill="white"/>
|
||||
<path d="M32.3891 23.6336V25.0166L25.6045 28.0605V26.6318L31.0062 24.3198L25.6045 22.0395V20.6108L32.3891 23.6336Z"
|
||||
fill="white"/>
|
||||
<path d="M22.3281 20.6037V22.0324L16.9299 24.3162L22.3281 26.6282V28.0569L15.5435 25.013V23.63L22.3281 20.6037Z"
|
||||
fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_986_206">
|
||||
<rect width="47" height="35" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 8.9 KiB |
41
src/components/Footer.astro
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
const date = new Date();
|
||||
---
|
||||
<footer class="position-absolute start-0 end-0">
|
||||
<div class="container pb-5">
|
||||
<div class="row justify-content-between align-items-center">
|
||||
<div class="col-sm mb-3 mb-sm-0">
|
||||
<p class="small mb-0 text-white">© CodyOps ~ All Rights Reserved ~ {date.toDateString()}</p>
|
||||
</div>
|
||||
<div class="col-sm-auto">
|
||||
<ul class="list-inline mb-0">
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.linkedin.com/company/codyopslatam">
|
||||
<i class="bi-linkedin text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.facebook.com/codyopslatam">
|
||||
<i class="bi-facebook text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.instagram.com/codyopslatam">
|
||||
<i class="bi-instagram text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://www.youtube.com/@codyopslabs">
|
||||
<i class="bi-youtube text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li class="list-inline-item">
|
||||
<a class="btn" href="https://github.com/codyopslabs">
|
||||
<i class="bi-github text-white"></i>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
34
src/layouts/Layout.astro
Normal file
@ -0,0 +1,34 @@
|
||||
---
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import 'bootstrap-icons/font/bootstrap-icons.min.css';
|
||||
|
||||
import favicon from '../assets/svg/favicon.svg';
|
||||
const gtm = import.meta.env.ASTRO_GTAG;
|
||||
---
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<meta name="description" content='' />
|
||||
<title>CodyOps</title>
|
||||
<link rel="icon" type="image/svg+xml" href={favicon.src} />
|
||||
<link rel="alternate" href="https://codyops.com/" hreflang="es" />
|
||||
<link rel="alternate" href="https://codyops.com.es/" hreflang="es-ES" />
|
||||
<link rel="alternate" href="https://codyops.com.br/" hreflang="pt-BR" />
|
||||
{ !import.meta.env.DEV &&
|
||||
<script is:inline async src={`https://www.googletagmanager.com/gtag/js?id=${gtm}`}></script>
|
||||
<script is:inline async define:vars={{ gtm }}>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', gtm);</script>
|
||||
}
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<style>
|
||||
body{
|
||||
background-color: #18181B;
|
||||
}
|
||||
</style>
|
204
src/pages/index.astro
Normal file
@ -0,0 +1,204 @@
|
||||
---
|
||||
import Layout from '../layouts/Layout.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
|
||||
import { Image } from 'astro:assets';
|
||||
import logo from '../assets/svg/codyops.svg';
|
||||
|
||||
import argentina from '../assets/img/argentina-flag-square-medium.png';
|
||||
import chile from '../assets/img/chile-flag-square-medium.png';
|
||||
import colombia from '../assets/img/colombia-flag-square-medium.png';
|
||||
import costarica from '../assets/img/costa-rica-flag-square-medium.png';
|
||||
import dominicana from '../assets/img/dominican-republic-flag-square-medium.png';
|
||||
import ecuador from '../assets/img/ecuador-flag-square-medium.png';
|
||||
import mexico from '../assets/img/mexico-flag-square-medium.png';
|
||||
import panama from '../assets/img/panama-flag-square-medium.png';
|
||||
import paraguay from '../assets/img/paraguay-flag-square-medium.png';
|
||||
import peru from '../assets/img/peru-flag-square-medium.png';
|
||||
import salvador from '../assets/img/el-salvador-flag-square-medium.png';
|
||||
import uruguay from '../assets/img/uruguay-flag-square-medium.png';
|
||||
import usa from '../assets/img/united-states-of-america-flag-square-medium.png';
|
||||
import brazil from '../assets/img/brazil-flag-square-medium.png';
|
||||
import spain from '../assets/img/spain-flag-square-medium.png';
|
||||
---
|
||||
<Layout>
|
||||
<body>
|
||||
<header id="header" class="navbar navbar-expand">
|
||||
<div class="container">
|
||||
<nav class="navbar-nav">
|
||||
<a class="navbar-brand" href="/" aria-label="CodyOps">
|
||||
<Image width="120" src={logo} alt="CodyOps Logo" />
|
||||
</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
<div class="container my-2">
|
||||
<div class="text-center mx-md-auto mb-5">
|
||||
<span class="text-uppercase text-white">Selector</span>
|
||||
<h2 class="h2 text-white">Escoja su País – Choose your Country - Escolha seu País</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://ar.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={argentina} alt="Argentina Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Argentina</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://www.codyops.com.br">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={brazil} alt="Brasil Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Brasil</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://cl.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={chile} alt="Chile Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Chile</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://co.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={colombia} alt="Colombia Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Colombia</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://cr.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={costarica} alt="Costa Rica Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Costa Rica</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://do.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={dominicana} alt="Dominicana Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Dominicana</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://ec.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={ecuador} alt="Ecuador Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Ecuador</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://www.codyops.com.es">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={spain} alt="Spain Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">España</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://www.codyops.com ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={usa} alt="USA Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Estados Unidos</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://mx.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={mexico} alt="Mexico Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">México</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://pa.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={panama} alt="Panama Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Panamá</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://py.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={paraguay} alt="Paraguay Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Paraguay</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://pe.codyops.com/ ">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={peru} alt="Peru Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Perú</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4 mb-4 mb-md-5 mb-lg-0">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://sv.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={salvador} alt="Salvador Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">El Salvador</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<a class="card h-100 text-center text-decoration-none border-0" href="https://uy.codyops.com">
|
||||
<div class="card-body bg-dark bg-opacity-75">
|
||||
<div class="mb-3">
|
||||
<Image class="img-fluid img-thumbnail" src={uruguay} alt="Uruguay Logo" />
|
||||
</div>
|
||||
<h2 class="card-title text-white">Uruguay</h2>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer />
|
||||
<script src="bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</Layout>
|
5
tsconfig.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": "astro/tsconfigs/strict",
|
||||
"include": [".astro/types.d.ts", "**/*"],
|
||||
"exclude": ["dist"],
|
||||
}
|