Skip to content

Instantly share code, notes, and snippets.

@cristianoap
cristianoap / index.js
Created April 5, 2023 13:05
Chakra UI
import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './App'
import { ChakraProvider, extendTheme } from '@chakra-ui/react'
const theme = extendTheme({
@cristianoap
cristianoap / App.js
Created April 5, 2023 13:05
Chakra UI
import { Box, Container, Heading } from '@chakra-ui/react'
const boxStyles = {
p: '10px',
bg: 'blue.400',
color: 'white',
m: '10px',
textAlign: 'center',
borderRadius: '5px',
@cristianoap
cristianoap / App.js
Created April 5, 2023 13:04
Chakra UI
import { Container, Heading } from '@chakra-ui/react'
function App() {
return (
<Container
textAlign="center"
display="flex"
flexDirection="column"
alignItems="center"
@cristianoap
cristianoap / App.js
Created April 5, 2023 13:03
Chakra UI
import { Heading } from '@chakra-ui/react'
import './App.css'
function App() {
return (
<div className="App">
<header className="App-header">
<Heading>Meu primeiro projeto utilizando Chakra-ui!</Heading>
<a>
@cristianoap
cristianoap / index.js
Created April 5, 2023 13:02
Chakra UI
import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './App'
import { ChakraProvider } from '@chakra-ui/react'
@cristianoap
cristianoap / index.html
Created October 19, 2018 01:23
WhatsApp in Pure CSS and JS
<div class="page">
<div class="marvel-device nexus5">
<div class="top-bar"></div>
<div class="sleep"></div>
<div class="volume"></div>
<div class="camera"></div>
<div class="screen">
<div class="screen-container">
<div class="status-bar">
<div class="time"></div>
@cristianoap
cristianoap / moip-form.js
Last active August 30, 2016 01:58
Gerador programático de formulário HTML do Moip
module Moip {
interface ProdutoSkel {
nome: string,
descricao: string,
valor: number
}
interface PagadorSkel {
pagador_nome: string
@cristianoap
cristianoap / snippet.js
Last active August 29, 2015 14:13 — forked from necolas/snippet.js
/*
* Updated to use the function-based method described in http://www.phpied.com/social-button-bffs/
* Better handling of scripts without supplied ids.
*
* N.B. Be sure to include Google Analytics's _gaq and Facebook's fbAsyncInit prior to this function.
*/
(function(doc, script) {
var js,
fjs = doc.getElementsByTagName(script)[0],