Skip to content

Commit

Permalink
refactor(about): update about contents
Browse files Browse the repository at this point in the history
  • Loading branch information
juunie-roh committed Dec 22, 2023
1 parent 7fc50d7 commit 5fb694d
Showing 1 changed file with 65 additions and 3 deletions.
68 changes: 65 additions & 3 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ const About = () => (
>
<DefaultSection>
<div className="relative z-[-1] flex place-items-baseline before:absolute before:h-[300px] before:w-[480px] before:-translate-x-1/2 before:rounded-full before:bg-gradient-radial before:from-transparent before:to-transparent before:blur-2xl before:content-[''] after:absolute after:-z-20 after:h-[180px] after:w-[240px] after:translate-x-1/3 after:bg-gradient-conic after:from-sky-200 after:via-blue-200 after:blur-2xl after:content-[''] before:lg:h-[360px] before:dark:bg-gradient-to-br before:dark:from-transparent before:dark:to-blue-700 before:dark:opacity-10 after:dark:from-sky-900 after:dark:via-[#0141ff] after:dark:opacity-40">
<p className="mr-3 text-sm text-gray-600 lg:text-lg">
This Project is built with
</p>
<p className="mr-3 text-lg text-gray-600">Built with</p>
<Image
className="relative dark:drop-shadow-[0_0_0.3rem_#ffffff70] dark:invert"
src="/next.svg"
Expand All @@ -64,6 +62,70 @@ const About = () => (
})}
</div>
</DefaultSection>
<DefaultSection>
<ul className="list-disc text-gray-600">
<li className="-ml-5 mb-3 list-none border-b border-gray-300 text-lg text-neutral-800 dark:border-neutral-800 dark:text-gray-300">
Packages Used
</li>
<li>
πŸ”₯ Type checking{' '}
<a className="underline" href="https://www.typescriptlang.org">
TypeScript
</a>
</li>
<li>
πŸ’Ž Integrate with{' '}
<a className="underline" href="https://tailwindcss.com">
Tailwind CSS
</a>
</li>
<li>βœ… Strict Mode for TypeScript and React 18</li>
<li>♻️ Type-safe environment variables with T3 Env</li>
<li>⌨️ Form with React Hook Form</li>
<li>
πŸ“ Linter with{' '}
<a className="underline" href="https://eslint.org">
ESLint
</a>{' '}
(default NextJS, NextJS Core Web Vitals, Tailwind CSS and Airbnb
configuration)
</li>
<li>
πŸ’– Code Formatter with{' '}
<a className="underline" href="https://prettier.io">
Prettier
</a>
</li>
<li>🦊 Husky for Git Hooks</li>
<li>🚫 Lint-staged for running linters on Git staged files</li>
<li>
πŸš“ Lint git commit with{' '}
<a className="underline" href="https://commitlint.js.org">
Commitlint
</a>
</li>
<li>πŸ““ Write standard compliant commit messages with Commitizen</li>
<li>🦺 Unit Testing with Jest and React Testing Library</li>
<li>πŸ‘· Run tests on pull request with GitHub Actions</li>
<li>
πŸŽ‰{' '}
<a className="underline" href="https://storybook.js.org">
Storybook
</a>{' '}
for UI development
</li>
<li>🎁 Automatic changelog generation with Semantic Release</li>
<li>πŸ’‘ Absolute Imports using `@` prefix</li>
<li>πŸ€– SEO metadata, JSON-LD and Open Graph tags with Next SEO</li>
<li>πŸ—ΊοΈ Sitemap.xml and robots.txt with next-sitemap</li>
<li className="my-3 -ml-5 list-none border-b border-gray-300 text-lg text-neutral-800 dark:border-neutral-800 dark:text-gray-300">
Built-in feature from Next.js
</li>
<li>β˜• Minify HTML & CSS</li>
<li>πŸ’¨ Live reload</li>
<li>βœ… Cache busting</li>
</ul>
</DefaultSection>
</Main>
);

Expand Down

0 comments on commit 5fb694d

Please sign in to comment.