1 2 3 4 5 6 7 8 9 10
--- import Page from "@layouts/Page.astro"; import PostList from "@components/PostList.astro"; const title = "getchoo's blog"; const description = "getchoo's blogposts"; --- <Page title={title} description={description}> <PostList /> </Page>