# Ship Public Assets With A Next.js App A Next.js project includes a top-level `public` directory. Anything in this directory at build time will be publicly available. This is handy for things like a logo, cover image, or favicon. If I create an `images` directory in `public` and then place an SVG in it: ```bash $ ls public/images logo.svg ``` Then I can reference that image in the HTML or JSX of my app pages, such as in a `header.jsx` component. ```jsx const Header = () => {