--- import Layout from '../layouts/Layout.astro'; import {siteConfig} from "../config"; // Conditionally import content if file exists let HomePageContent; try { const module = await import('../content/index.md'); HomePageContent = module.Content; } catch (e) { // File doesn't exist or couldn't be imported console.log('Homepage content not found, using default content'); } ---

~/

{HomePageContent ? :

Welcome!

Not much here yet, but you can check out my blog posts here.

If you are site owner, please create src/content/index.md to customize this page.

}
{!siteConfig.noClientJavaScript && }