18 lines
510 B
Text
18 lines
510 B
Text
|
---
|
||
|
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" />
|
||
|
<br />
|
||
|
<Image id='testing' src={import('../assets/social.jpg')} width={506} format="avif" />
|
||
|
</body>
|
||
|
</html>
|