Skip to content

Instantly share code, notes, and snippets.

View camunoz2's full-sized avatar
🏠
Working from home

Cristian Muñoz camunoz2

🏠
Working from home
View GitHub Profile
@camunoz2
camunoz2 / objetos.js
Created June 19, 2024 00:26
desafio4-objetos
const propiedades_alquiler = [
{
nombre: 'Apartamento acogedor en la montaña',
src: 'https://cdn.bioguia.com/embed/3d0fb0142790e6b90664042cbafcb1581427139/furgoneta.jpg',
descripcion: 'Este apartamento acogedor está situado en lo alto de la montaña con impresionantes vistas',
ubicacion: '789 Mountain Road, Summit Peaks, CA 23456',
habitaciones: 2,
costo: 1200,
smoke: true,
pets: true
@camunoz2
camunoz2 / settings.json
Last active October 7, 2022 13:13
vscode config for vite projects
{
"emmet.excludeLanguages": [],
"emmet.includeLanguages": {
"markdown": "html",
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"files.exclude": {
@camunoz2
camunoz2 / _app.tsx
Created September 5, 2022 18:37 — forked from elzup/_app.tsx
Next.js with typescript minimum pages/_document.tsx, pages/_app.tsx
import { AppProps } from 'next/app'
import Head from 'next/head'
const App = ({ Component, pageProps }: AppProps) => (
<>
<Head>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
@camunoz2
camunoz2 / sassas.md
Created January 14, 2022 22:15 — forked from AdamMarsden/sassas.md
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|