--- import FrequentlyAskedQuestions from '../web/FrequentlyAskedQuestions.astro'; import Hero from '../web/Hero.astro'; import TextWithImage from '../web/TextWithImage.astro'; import UpcomingEvents from '../web/UpcomingEvents.astro'; import WallOfText from '../web/WallOfText.astro'; import EquipmentTable from '../web/EquipmentTable.astro'; import Reviews from '../web/Reviews.astro'; import LastBlogs from '../web/LastBlogs.astro'; import LastProjects from '../web/LastProjects.astro'; interface Props { webpage: WebpageComponent[]; } const components = Astro.props.webpage; console.log(Astro.props.webpage); ---