This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.
Key Points:
State Management: The component uses useState to manage various states like articles, search term, page number, loading status, error messages, and dark mode.
Fetching News: The fetchNews function is responsible for fetching news articles from the NewsAPI. It constructs the API URL based on whether a search term is provided or not and updates the articles state accordingly.
Effect Hooks: useEffect is used to fetch general news articles on initial component mount and to fetch more articles when the search term or page number changes.
Error Handling: Errors during fetching are caught and displayed to the user.
Dark Mode Toggle: The dark mode is toggled by changing the darkMode state, and the CSS classes are updated accordingly.
User Interaction: The component handles user interactions like searching for news and loading more articles.