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 / _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…
|