This is how your ad banner will look when embedded in a mini app.
Add this component to your mini app to display ads:
import { AdWidget } from "@/components/AdWidget";
export default function MyApp() {
return (
<div>
<AdWidget
publisherAddress="YOUR_WALLET_ADDRESS"
appId="your-app-id"
slot="footer"
width="100%"
height="200px"
/>
</div>
);
}