├── .env.example ├── .eslintrc.json ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── all-communities.json ├── all-founders.json ├── all-lead-communities.json ├── all-social-media.json ├── all-sponsors.json ├── icons ├── glasses-alt.png ├── glasses.png ├── laptop.png ├── leaf.png ├── mask.png ├── mug.png ├── other.png ├── plant.png ├── socks.png ├── stickers.png ├── swag.png └── tshirt.png ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── fonts │ ├── FormaDJRMicro-Bold.woff2 │ ├── FormaDJRMicro-Medium.woff2 │ ├── FormaDJRMicro-Regular.woff2 │ ├── Raleway-Bold.woff2 │ ├── Raleway-Medium.woff2 │ └── Raleway-Regular.woff2 ├── hacktoberfest │ └── 2024 │ │ ├── _next │ │ └── static │ │ │ ├── css │ │ │ └── c51158ee531f30bc.css │ │ │ └── media │ │ │ ├── 2d141e1a38819612.p.woff2 │ │ │ ├── 62328fecf9e80426.woff2 │ │ │ ├── ascii-about.0f9ef496.svg │ │ │ ├── ascii-brandkit.9a4ec513.svg │ │ │ ├── ascii-donate.5ec641bf.svg │ │ │ ├── ascii-events.ba4e8972.svg │ │ │ ├── ascii-participation.dfcfa767.svg │ │ │ ├── ascii-report.e9c61da4.svg │ │ │ ├── ascii-share.f431ab2b.svg │ │ │ ├── ascii-sponsors--black.d88aefd9.svg │ │ │ ├── bekah.a39aae2a.jpg │ │ │ ├── bg-hero-secondary--bottom.fd39f70e.svg │ │ │ ├── bg-hero-secondary--top.a22f533c.svg │ │ │ ├── brand-guidelines.2d7494f3.pdf │ │ │ ├── brand-kit.83c1dfe0.zip │ │ │ ├── c7eb187887c48af6.woff2 │ │ │ ├── cloudflare.faf99102.svg │ │ │ ├── cncf.44512602.svg │ │ │ ├── dev.70e43b6a.png │ │ │ ├── digitalocean.7988d115.svg │ │ │ ├── dots.c465a3c7.svg │ │ │ ├── eddie.6176f33b.jpg │ │ │ ├── favicon.25a5e6eb.svg │ │ │ ├── github.ee88c17f.png │ │ │ ├── github_education.ff066505.png │ │ │ ├── gitlab.15eca006.png │ │ │ ├── holographic.f1020545.png │ │ │ ├── lisa.5aa1bbd8.jpg │ │ │ ├── logo-hacktoberfest-11--beige.2b2fdfcb.svg │ │ │ ├── logo-hacktoberfest-11--footer.cc639da3.svg │ │ │ ├── logo-hacktoberfest-11--green.dd2bc4ca.svg │ │ │ ├── mason.3119173a.jpg │ │ │ ├── mlh.7764abe0.png │ │ │ ├── osi.ec2f0386.svg │ │ │ ├── quira.23f5f457.svg │ │ │ ├── sloan-the-sloth.8ed4b34d.svg │ │ │ └── top-dots.e352f2dc.svg │ │ ├── avvy.png │ │ ├── caribe-dev-logo.svg │ │ ├── coco-avatar.png │ │ ├── fca.png │ │ ├── feanware.png │ │ ├── index.html │ │ └── small-caribe-dev.png └── images │ ├── calendar-icon.svg │ ├── caribe-dev-hero.png │ ├── caribe-dev-logo.svg │ ├── clouds.svg │ ├── communities │ ├── Logo_LinuxBQ_2025.png │ ├── aws-bq-logo.png │ ├── barranquillajs-logo.png │ ├── cracktive-logo.png │ ├── duke-barranquilla.png │ ├── friends-figma-baq-logo.jpg │ ├── game-logo.png │ ├── google-baq-logo.jpeg │ ├── ieee-logo.png │ ├── linux-bq-logo.jpeg │ ├── notion-logo.png │ ├── pioneras-baq-logo.png │ ├── pybaq-logo.png │ ├── red-team-baq-logo.jpg │ ├── ruby-baq-logo.png │ ├── wie-logo.png │ ├── women-techmakers-baq.jpg │ └── wp-bq-logo.png │ ├── founders │ ├── aldair-moreno.jpeg │ ├── brianith-navarro.jpeg │ ├── carlos-ponton.jpeg │ ├── fabian-altahona.png │ ├── francisco-quintero.jpg │ ├── gabriel-coronado.jpg │ ├── javier-daza.jpeg │ ├── jesus-bossa.jpeg │ ├── jesus-hernandez.jpeg │ ├── jesus-viloria.jpeg │ ├── kelly-villa-2.png │ ├── kelly-villa.png │ └── luis-porras.jpg │ ├── github-icon.svg │ ├── green-block.svg │ ├── hamburger-icon.svg │ ├── high-wave.svg │ ├── instagram-icon.svg │ ├── left-mountain.svg │ ├── left-palms.svg │ ├── linkedin-icon.svg │ ├── nosotros.jpeg │ ├── orange-block.svg │ ├── reflected-cloulds.svg │ ├── reflected-sun.svg │ ├── right-mountain.svg │ ├── right-palms.svg │ ├── small-caribe-dev.png │ ├── small-caribe-dev.svg │ ├── small-wave.svg │ ├── speakers │ └── dayan-mendez.jpeg │ ├── sponsors │ ├── avvy-logo.webp │ └── logo-alegra-dark.png │ ├── sun.svg │ ├── twitch-icon.svg │ ├── twitter-icon.svg │ ├── volunteers │ ├── andres-ruz.jpeg │ ├── henry-saenz.jpg │ ├── livieth-mercado.jpg │ ├── loraine-rivera.jpg │ └── valentina-dlhoz.jpg │ └── world-icon.svg ├── schedule.json ├── src ├── components │ ├── Avatar │ │ └── index.js │ ├── Carousel │ │ └── index.js │ ├── Community │ │ └── index.js │ ├── EventCard │ │ └── EventCard.js │ ├── Footer │ │ └── index.js │ ├── Header │ │ └── index.js │ ├── Hero │ │ └── index.js │ ├── Icon │ │ ├── icons.js │ │ └── index.js │ ├── Layout │ │ └── index.js │ ├── Menu │ │ └── index.js │ ├── Schedule │ │ └── index.js │ ├── ScrollToTop │ │ └── index.js │ ├── Seo │ │ └── index.js │ └── Sponsor │ │ └── index.js ├── controllers │ ├── getAllEvents.js │ ├── getDiscordEvents.js │ ├── getEventbriteEvents.js │ ├── getGdgEvents.js │ └── getMeetupEvents.js ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ ├── events.js │ │ └── newsletter.js │ ├── caribeconf.js │ └── index.js ├── styles │ └── globals.css └── utils │ ├── controllers.js │ ├── fonts.js │ ├── google-calendar.js │ └── index.js └── tailwind.config.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/README.md -------------------------------------------------------------------------------- /all-communities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/all-communities.json -------------------------------------------------------------------------------- /all-founders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/all-founders.json -------------------------------------------------------------------------------- /all-lead-communities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/all-lead-communities.json -------------------------------------------------------------------------------- /all-social-media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/all-social-media.json -------------------------------------------------------------------------------- /all-sponsors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/all-sponsors.json -------------------------------------------------------------------------------- /icons/glasses-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/glasses-alt.png -------------------------------------------------------------------------------- /icons/glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/glasses.png -------------------------------------------------------------------------------- /icons/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/laptop.png -------------------------------------------------------------------------------- /icons/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/leaf.png -------------------------------------------------------------------------------- /icons/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/mask.png -------------------------------------------------------------------------------- /icons/mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/mug.png -------------------------------------------------------------------------------- /icons/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/other.png -------------------------------------------------------------------------------- /icons/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/plant.png -------------------------------------------------------------------------------- /icons/socks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/socks.png -------------------------------------------------------------------------------- /icons/stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/stickers.png -------------------------------------------------------------------------------- /icons/swag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/swag.png -------------------------------------------------------------------------------- /icons/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/icons/tshirt.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/FormaDJRMicro-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/FormaDJRMicro-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/FormaDJRMicro-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/FormaDJRMicro-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/FormaDJRMicro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/FormaDJRMicro-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/Raleway-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/Raleway-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/Raleway-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/Raleway-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/Raleway-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/fonts/Raleway-Regular.woff2 -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/css/c51158ee531f30bc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/css/c51158ee531f30bc.css -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/2d141e1a38819612.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/2d141e1a38819612.p.woff2 -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/62328fecf9e80426.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/62328fecf9e80426.woff2 -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-about.0f9ef496.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-about.0f9ef496.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-brandkit.9a4ec513.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-brandkit.9a4ec513.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-donate.5ec641bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-donate.5ec641bf.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-events.ba4e8972.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-events.ba4e8972.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-participation.dfcfa767.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-participation.dfcfa767.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-report.e9c61da4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-report.e9c61da4.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-share.f431ab2b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-share.f431ab2b.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/ascii-sponsors--black.d88aefd9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/ascii-sponsors--black.d88aefd9.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/bekah.a39aae2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/bekah.a39aae2a.jpg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/bg-hero-secondary--bottom.fd39f70e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/bg-hero-secondary--bottom.fd39f70e.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/bg-hero-secondary--top.a22f533c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/bg-hero-secondary--top.a22f533c.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/brand-guidelines.2d7494f3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/brand-guidelines.2d7494f3.pdf -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/brand-kit.83c1dfe0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/brand-kit.83c1dfe0.zip -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/c7eb187887c48af6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/c7eb187887c48af6.woff2 -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/cloudflare.faf99102.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/cloudflare.faf99102.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/cncf.44512602.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/cncf.44512602.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/dev.70e43b6a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/dev.70e43b6a.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/digitalocean.7988d115.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/digitalocean.7988d115.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/dots.c465a3c7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/dots.c465a3c7.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/eddie.6176f33b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/eddie.6176f33b.jpg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/favicon.25a5e6eb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/favicon.25a5e6eb.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/github.ee88c17f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/github.ee88c17f.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/github_education.ff066505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/github_education.ff066505.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/gitlab.15eca006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/gitlab.15eca006.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/holographic.f1020545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/holographic.f1020545.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/lisa.5aa1bbd8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/lisa.5aa1bbd8.jpg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--beige.2b2fdfcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--beige.2b2fdfcb.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--footer.cc639da3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--footer.cc639da3.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--green.dd2bc4ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/logo-hacktoberfest-11--green.dd2bc4ca.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/mason.3119173a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/mason.3119173a.jpg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/mlh.7764abe0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/mlh.7764abe0.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/osi.ec2f0386.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/osi.ec2f0386.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/quira.23f5f457.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/quira.23f5f457.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/sloan-the-sloth.8ed4b34d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/sloan-the-sloth.8ed4b34d.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/_next/static/media/top-dots.e352f2dc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/_next/static/media/top-dots.e352f2dc.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/avvy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/avvy.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/caribe-dev-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/caribe-dev-logo.svg -------------------------------------------------------------------------------- /public/hacktoberfest/2024/coco-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/coco-avatar.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/fca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/fca.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/feanware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/feanware.png -------------------------------------------------------------------------------- /public/hacktoberfest/2024/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/index.html -------------------------------------------------------------------------------- /public/hacktoberfest/2024/small-caribe-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/hacktoberfest/2024/small-caribe-dev.png -------------------------------------------------------------------------------- /public/images/calendar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/calendar-icon.svg -------------------------------------------------------------------------------- /public/images/caribe-dev-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/caribe-dev-hero.png -------------------------------------------------------------------------------- /public/images/caribe-dev-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/caribe-dev-logo.svg -------------------------------------------------------------------------------- /public/images/clouds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/clouds.svg -------------------------------------------------------------------------------- /public/images/communities/Logo_LinuxBQ_2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/Logo_LinuxBQ_2025.png -------------------------------------------------------------------------------- /public/images/communities/aws-bq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/aws-bq-logo.png -------------------------------------------------------------------------------- /public/images/communities/barranquillajs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/barranquillajs-logo.png -------------------------------------------------------------------------------- /public/images/communities/cracktive-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/cracktive-logo.png -------------------------------------------------------------------------------- /public/images/communities/duke-barranquilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/duke-barranquilla.png -------------------------------------------------------------------------------- /public/images/communities/friends-figma-baq-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/friends-figma-baq-logo.jpg -------------------------------------------------------------------------------- /public/images/communities/game-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/game-logo.png -------------------------------------------------------------------------------- /public/images/communities/google-baq-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/google-baq-logo.jpeg -------------------------------------------------------------------------------- /public/images/communities/ieee-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/ieee-logo.png -------------------------------------------------------------------------------- /public/images/communities/linux-bq-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/linux-bq-logo.jpeg -------------------------------------------------------------------------------- /public/images/communities/notion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/notion-logo.png -------------------------------------------------------------------------------- /public/images/communities/pioneras-baq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/pioneras-baq-logo.png -------------------------------------------------------------------------------- /public/images/communities/pybaq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/pybaq-logo.png -------------------------------------------------------------------------------- /public/images/communities/red-team-baq-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/red-team-baq-logo.jpg -------------------------------------------------------------------------------- /public/images/communities/ruby-baq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/ruby-baq-logo.png -------------------------------------------------------------------------------- /public/images/communities/wie-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/wie-logo.png -------------------------------------------------------------------------------- /public/images/communities/women-techmakers-baq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/women-techmakers-baq.jpg -------------------------------------------------------------------------------- /public/images/communities/wp-bq-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/communities/wp-bq-logo.png -------------------------------------------------------------------------------- /public/images/founders/aldair-moreno.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/aldair-moreno.jpeg -------------------------------------------------------------------------------- /public/images/founders/brianith-navarro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/brianith-navarro.jpeg -------------------------------------------------------------------------------- /public/images/founders/carlos-ponton.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/carlos-ponton.jpeg -------------------------------------------------------------------------------- /public/images/founders/fabian-altahona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/fabian-altahona.png -------------------------------------------------------------------------------- /public/images/founders/francisco-quintero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/francisco-quintero.jpg -------------------------------------------------------------------------------- /public/images/founders/gabriel-coronado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/gabriel-coronado.jpg -------------------------------------------------------------------------------- /public/images/founders/javier-daza.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/javier-daza.jpeg -------------------------------------------------------------------------------- /public/images/founders/jesus-bossa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/jesus-bossa.jpeg -------------------------------------------------------------------------------- /public/images/founders/jesus-hernandez.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/jesus-hernandez.jpeg -------------------------------------------------------------------------------- /public/images/founders/jesus-viloria.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/jesus-viloria.jpeg -------------------------------------------------------------------------------- /public/images/founders/kelly-villa-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/kelly-villa-2.png -------------------------------------------------------------------------------- /public/images/founders/kelly-villa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/kelly-villa.png -------------------------------------------------------------------------------- /public/images/founders/luis-porras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/founders/luis-porras.jpg -------------------------------------------------------------------------------- /public/images/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/github-icon.svg -------------------------------------------------------------------------------- /public/images/green-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/green-block.svg -------------------------------------------------------------------------------- /public/images/hamburger-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/hamburger-icon.svg -------------------------------------------------------------------------------- /public/images/high-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/high-wave.svg -------------------------------------------------------------------------------- /public/images/instagram-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/instagram-icon.svg -------------------------------------------------------------------------------- /public/images/left-mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/left-mountain.svg -------------------------------------------------------------------------------- /public/images/left-palms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/left-palms.svg -------------------------------------------------------------------------------- /public/images/linkedin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/linkedin-icon.svg -------------------------------------------------------------------------------- /public/images/nosotros.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/nosotros.jpeg -------------------------------------------------------------------------------- /public/images/orange-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/orange-block.svg -------------------------------------------------------------------------------- /public/images/reflected-cloulds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/reflected-cloulds.svg -------------------------------------------------------------------------------- /public/images/reflected-sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/reflected-sun.svg -------------------------------------------------------------------------------- /public/images/right-mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/right-mountain.svg -------------------------------------------------------------------------------- /public/images/right-palms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/right-palms.svg -------------------------------------------------------------------------------- /public/images/small-caribe-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/small-caribe-dev.png -------------------------------------------------------------------------------- /public/images/small-caribe-dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/small-caribe-dev.svg -------------------------------------------------------------------------------- /public/images/small-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/small-wave.svg -------------------------------------------------------------------------------- /public/images/speakers/dayan-mendez.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/speakers/dayan-mendez.jpeg -------------------------------------------------------------------------------- /public/images/sponsors/avvy-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/sponsors/avvy-logo.webp -------------------------------------------------------------------------------- /public/images/sponsors/logo-alegra-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/sponsors/logo-alegra-dark.png -------------------------------------------------------------------------------- /public/images/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/sun.svg -------------------------------------------------------------------------------- /public/images/twitch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/twitch-icon.svg -------------------------------------------------------------------------------- /public/images/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/twitter-icon.svg -------------------------------------------------------------------------------- /public/images/volunteers/andres-ruz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/volunteers/andres-ruz.jpeg -------------------------------------------------------------------------------- /public/images/volunteers/henry-saenz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/volunteers/henry-saenz.jpg -------------------------------------------------------------------------------- /public/images/volunteers/livieth-mercado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/volunteers/livieth-mercado.jpg -------------------------------------------------------------------------------- /public/images/volunteers/loraine-rivera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/volunteers/loraine-rivera.jpg -------------------------------------------------------------------------------- /public/images/volunteers/valentina-dlhoz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/volunteers/valentina-dlhoz.jpg -------------------------------------------------------------------------------- /public/images/world-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/public/images/world-icon.svg -------------------------------------------------------------------------------- /schedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/schedule.json -------------------------------------------------------------------------------- /src/components/Avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Avatar/index.js -------------------------------------------------------------------------------- /src/components/Carousel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Carousel/index.js -------------------------------------------------------------------------------- /src/components/Community/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Community/index.js -------------------------------------------------------------------------------- /src/components/EventCard/EventCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/EventCard/EventCard.js -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/Hero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Hero/index.js -------------------------------------------------------------------------------- /src/components/Icon/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Icon/icons.js -------------------------------------------------------------------------------- /src/components/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Icon/index.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Layout/index.js -------------------------------------------------------------------------------- /src/components/Menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Menu/index.js -------------------------------------------------------------------------------- /src/components/Schedule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Schedule/index.js -------------------------------------------------------------------------------- /src/components/ScrollToTop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/ScrollToTop/index.js -------------------------------------------------------------------------------- /src/components/Seo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Seo/index.js -------------------------------------------------------------------------------- /src/components/Sponsor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/components/Sponsor/index.js -------------------------------------------------------------------------------- /src/controllers/getAllEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/controllers/getAllEvents.js -------------------------------------------------------------------------------- /src/controllers/getDiscordEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/controllers/getDiscordEvents.js -------------------------------------------------------------------------------- /src/controllers/getEventbriteEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/controllers/getEventbriteEvents.js -------------------------------------------------------------------------------- /src/controllers/getGdgEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/controllers/getGdgEvents.js -------------------------------------------------------------------------------- /src/controllers/getMeetupEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/controllers/getMeetupEvents.js -------------------------------------------------------------------------------- /src/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/_app.js -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/pages/api/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/api/events.js -------------------------------------------------------------------------------- /src/pages/api/newsletter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/api/newsletter.js -------------------------------------------------------------------------------- /src/pages/caribeconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/caribeconf.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/utils/controllers.js -------------------------------------------------------------------------------- /src/utils/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/utils/fonts.js -------------------------------------------------------------------------------- /src/utils/google-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/src/utils/google-calendar.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from './controllers' -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caribe-Dev/caribe-page/HEAD/tailwind.config.js --------------------------------------------------------------------------------