()
| 61 | } |
| 62 | |
| 63 | const Header = () => { |
| 64 | return ( |
| 65 | <header> |
| 66 | <Container className="flex items-start justify-between gap-3"> |
| 67 | <Link href="/" className="transition-all hover:opacity-80"> |
| 68 | <Image |
| 69 | src={Logo} |
| 70 | alt="Design Engineer Logo" |
| 71 | width={96} |
| 72 | height={39.68} |
| 73 | /> |
| 74 | </Link> |
| 75 | <Subscribe /> |
| 76 | </Container> |
| 77 | </header> |
| 78 | ); |
| 79 | }; |
| 80 | |
| 81 | const Footer = () => { |
| 82 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected