mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
19 lines
601 B
Text
19 lines
601 B
Text
|
---
|
||
|
import socialJpg from '../assets/social.jpg';
|
||
|
import introJpg from '../assets/blog/introducing astro.jpg';
|
||
|
import { Image } from '@astrojs/image/components';
|
||
|
---
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<!-- Head Stuff -->
|
||
|
</head>
|
||
|
<body>
|
||
|
<Image id="hero" src="/hero.jpg" width={768} height={414} format="webp" alt="hero" />
|
||
|
<br />
|
||
|
<Image id="social-jpg" src={socialJpg} width={506} height={253} alt="social-jpg" />
|
||
|
<br />
|
||
|
<Image id="google" src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" width={544} height={184} format="webp" alt="Google" />
|
||
|
</body>
|
||
|
</html>
|