-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
78 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
title: 'Despliegue de proyectos JavaScript con Docker' | ||
date: '13 Enero 2024' | ||
excerpt: 'Docker para distribuir aplicaciones JavaScript en cualquier entorno ...' | ||
cover: '/tracks/deploy-docker-javascript-projects.png' | ||
deploy: '' | ||
github: '' | ||
youtube: '' | ||
authorName: '@geekhadev' | ||
authorAvatar: 'https://avatars.githubusercontent.com/u/499907?v=4' | ||
authorGithub: 'https://github.com/geekhadev' | ||
status: 'published' | ||
--- | ||
|
||
### Introducción | ||
|
||
<br /> | ||
|
||
### Requisitos | ||
|
||
<br /> | ||
|
||
### Estructura del proyecto | ||
|
||
``` | ||
your-project/ | ||
├── node_modules/ | ||
├── public/ | ||
│ ├── next.svg | ||
│ └── vercel.svg | ||
├── src/ | ||
│ └── app/ | ||
│ ├── page.js | ||
│ ├── layout.js | ||
│ ├── global.css | ||
│ ├── favicon.ico | ||
│ └── api/ | ||
│ └── check.js | ||
├── .eslintrc.json | ||
├── .gitignore | ||
├── jsconfig.json | ||
├── next.config.js | ||
├── package-lock.json | ||
├── package.json | ||
├── postcss.config.js | ||
├── README.md | ||
└── tailwind.config.js | ||
``` | ||
|
||
<br /> | ||
|
||
### Recomendaciones | ||
|
||
### Comunidad |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
import "./globals.css"; | ||
import Header from "@/components/Header"; | ||
import './globals.css' | ||
import Header from '@/components/Header' | ||
|
||
export const metadata = { | ||
title: "Hack a Track", | ||
title: 'Hack a Track', | ||
description: | ||
"Plataforma web con la información de los tracks educativos de HACK A BOSS", | ||
'Plataforma web con la información de los tracks educativos de HACK A BOSS', | ||
openGraph: { | ||
title: "Hack a Track", | ||
title: 'Hack a Track', | ||
description: | ||
"Plataforma web con la información de los tracks educativos de HACK A BOSS", | ||
url: "https://hackatrack.vercel.app/", | ||
'Plataforma web con la información de los tracks educativos de HACK A BOSS', | ||
url: 'https://hackatrack.vercel.app/', | ||
images: [ | ||
{ | ||
url: "/cover.png", | ||
alt: "Hack a Track", | ||
}, | ||
url: '/cover.png', | ||
alt: 'Hack a Track' | ||
} | ||
], | ||
locale: "es_ES", | ||
type: "website", | ||
locale: 'es_ES', | ||
type: 'website' | ||
}, | ||
twitter: { | ||
card: "summary_large_image", | ||
title: "Hack a Track", | ||
card: 'summary_large_image', | ||
title: 'Hack a Track', | ||
description: | ||
"Plataforma web con la información de los tracks educativos de HACK A BOSS", | ||
url: "https://hackatrack.vercel.app/", | ||
'Plataforma web con la información de los tracks educativos de HACK A BOSS', | ||
url: 'https://hackatrack.vercel.app/', | ||
images: [ | ||
{ | ||
url: "/cover.png", | ||
alt: "Hack a Track", | ||
}, | ||
], | ||
}, | ||
}; | ||
url: '/cover.png', | ||
alt: 'Hack a Track' | ||
} | ||
] | ||
} | ||
} | ||
|
||
export default function RootLayout({ children }) { | ||
export default function RootLayout ({ children }) { | ||
return ( | ||
<html lang="en"> | ||
<body className="bg-[#121212]"> | ||
<Header /> | ||
{children} | ||
</body> | ||
</html> | ||
); | ||
) | ||
} |