Bento is a neobrutalism-styled nextjs tailwind template heavily insipired by bento.me.
Create a new repo from this template.
This template uses pnpm
package manager so make sure you have it installed.
To install all dependencies run:
pnpm i
To run the app locally:
pnpm run dev
- Inside
layout.tsx
update the metadata - Update the
favicon.ico
andpfp.png
(profile picture) - Inside
page.tsx
update the content
Inside links.ts
inside LINKS
object, every property represents a link displayed on the home page. Leave only the links you wanna show.
github: {
title: 'Github',
icon: github,
link: 'https://github.com/johndoe',
text: '@johndoe',
},
title
and text
are being displayed on the link, link
is self-explanatory, and icon
is svg icon imported from public/icons
. Do not touch icon
unless you want to have different icons than the default ones.
To change the styling visit styling docs, and copy the desired styling to tailwind config like it's shown in the styling docs.