Skip to content

Instantly share code, notes, and snippets.

View oscar-soto's full-sized avatar
🎯
Focusing

Oscar Espinoza oscar-soto

🎯
Focusing
  • santiago de chile
View GitHub Profile
@codigoconjuan
codigoconjuan / AdminLayout.js
Created December 13, 2022 17:53
Layout Panel de Administración Next.js
import Head from "next/head";
import Image from "next/image";
import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
export default function AdminLayout({ children, pagina }) {
return (
<>
<Head>
<title>Café - {pagina}</title>