sass/
|
|– base/
| |– _reset.scss # Reset/normalize
| |– _typography.scss # Typography rules
| ... # Etc…
|
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| { | |
| "emmet.excludeLanguages": [], | |
| "emmet.includeLanguages": { | |
| "markdown": "html", | |
| "javascript": "javascriptreact", | |
| "typescript": "typescriptreact" | |
| }, | |
| "emmet.showSuggestionsAsSnippets": true, | |
| "emmet.triggerExpansionOnTab": true, | |
| "files.exclude": { |
This file contains hidden or 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
| 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" | |
| /> |