Skip to content

Commit

Permalink
fix semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
geekhadev committed Feb 5, 2024
1 parent e5b667a commit 026e895
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 24 deletions.
54 changes: 54 additions & 0 deletions public/content/deploy-docker-javascript-projects.md
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.
48 changes: 24 additions & 24 deletions src/app/layout.js
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>
);
)
}

0 comments on commit 026e895

Please sign in to comment.