Header.tsx
1 import { Button } from "@/components/elements/button/Button"; 2 import styles from "./Header.module.scss"; 3 import Link from "next/link"; 4 5 export const Header = () => { 6 return ( 7 <header className={styles.header}> 8 <Link href="/"> 9 <h3>Containers</h3> 10 </Link> 11 12 <Button variant="primary">Login</Button> 13 </header> 14 ); 15 };