Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
---
import socialJpg from '../assets/social.jpg';
import { Image } from '@astrojs/image/components';
<html>
<head>
<!-- Head Stuff -->
</head>
<body>
<Image id="social-jpg" src={socialJpg} width={506} height={253} />
<br />
<Image id="google" src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" width={544} height={184} format="webp" />
<Image id="inline" src={import('../assets/social.jpg')} width={506} />
<Image id="query" src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png?token=abc" width={544} height={184} format="webp" />
</body>
</html>