This is a Next.js project
with TailwindCSS
My persoanl website is designed for showing personal background and sharing my personal thought in blog
- About
- Blog
Install portfolio with yarn
yarn install
cd portfolio
ESLint
yarn lint
yarn format
Start the server
yarn dev
Open http://localhost:3000 with your browser to see the result.
Client: React, Next, TailwindCSS
Server:
Project: ESlint,Husky,Prettier (formatting)
Roadmap
-
Additional browser support
-
Markdown guide - Blog
-
Readme guide - Blog
-
Github guide - Blog
-
Linux guide - Blog
Layer
Components | z-index |
---|---|
header | 40 |
TailwindCSS Style
Screen
Components | min-width |
---|---|
sm | 640px |
md | 768px |
lg | 1024px |
only use lg:
is ok,the rest will be marked as small screen
// min screen width will be 10/12 of full screen (phone) , big screen wiil be width 100% (desktop)
<div className='absolute top-0 left-0 w-10/12 h-screen bg-white text-black z-40 lg:relative lg:w-full lg:h-full'>
...
</div>
2023-11-27