About this website

COLORMONO

COLORMONO / August 11, 2021

2 min read––– views

status: 'draft' keyword: 'nextjs', 'tailwindcss'

About this website

🐵 TL'DR


Framework

The React Framework for Production Next.js gives you the best developer experience with all the features you need for production: hybrid static & server rendering, TypeScript support, smart bundling, route pre-fetching, and more.


UI

  • TailwindCSS

Directory structure

pages/
public/
src/
└── components/
    └── Post/
        ├── Article.tsx
        ├── Author.tsx
        ├── Card.tsx
        ├── Comments.tsx
        ├── Post.tsx
        ├── Post.helpers.ts
        ├── Seo.tsx
        ├── Tags.tsx
        ├── index.tsx
    └── Widget/
        ├── index.tsx
        └── Widget.tsx
└── constants/index.js
└── helpers/
    └── auth.helpers.ts
└── hooks/
    └── use-name.hook.tsx
└── layouts/
    └── Default.tsx
└── styles/globsl.css
└── types/
└── utils/index.js

Component/index.ts:

export * from './Component';
export { default } from './Component';

Component/Component.tsx:

function Component({ title }) {
  /* Component stuff here */
}
export default Component;

Content Creation


SEO

Next SEO is a plugin that makes managing your SEO easier in Next.js projects.