Middle+
Do you have experience working with Next.js?
sobes.tech AI
Answer from AI
Yes, I have experience working with Next.js. I used it to create server-rendered React applications with improved SEO and performance.
Main points:
- Used
getStaticPropsandgetServerSidePropsfunctions for preloading data on the server. - Configured routing with dynamic paths.
- Worked with API Routes to create backend endpoints within Next.js.
- Optimized image loading using the built-in
next/imagecomponent.
Example of a simple component with server-side data loading:
export async function getStaticProps() {
const res = await fetch('https://api.example.com/data');
const data = await res.json();
return { props: { data } };
}
export default function Page({ data }) {
return <div>{JSON.stringify(data)}</div>;
}