First Light

1 minute read
Gradient test banner with the words TEST IMAGE

Welcome to the web development blog and technical journal of Alexander Synaptic. This post is only a placeholder for more content to come.

Experimenting with code blocks:

interface Props {
entry: CollectionEntry<'posts'>;
}
const { entry } = Astro.props;
const {
data: { imageHero, title },
} = entry;
const { Content } = await render(entry);