DevJourney

nextjs/nextjs.dj.upayan.dev/src/components/header/header.js

import styles from './header.module.css';

export default function Header() {
  return (
    <div className={styles.header}>
      <h1>Welcome to My Next.js App</h1>
    </div>
  );
}
View on GitHub