This app provides a basic Imgur album search and gallery built using Next.js 15.
Install dependencies
npm install
# or
pnpm install
First, run the development server:
npm run dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the album.
-
Next.js: This is used for its routing and server-rendering capabilities that simplify development while enhancing performance and SEO.
-
Tailwind CSS: This is used for its utility-first approach, enabling rapid and consistent styling directly in the markup without leaving the development workflow.
-
shadcn/ui: This is used for its pre-built, customizable UI components that integrate seamlessly with Tailwind CSS, speeding up development while maintaining design consistency.
-
ESLint: This is used to maintain code quality by enforcing coding standards and catching potential issues early in the development process.
-
Prettier: This is used for automatic code formatting, ensuring consistency and readability across the codebase.