Post Title - Short and to the Point
Published on October 3, 2025
A short introductory paragraph that summarizes the content of the post. This should
grab the reader's attention and provide a clear idea of what follows.
Main Section
The main content of your post goes here. You can use:
Subsection
More details about the topic.
Adding Images
Simple Image

Image Carousel - Automatic from Folder
Recommended Method: Use FolderCarousel to automatically load all
images from a folder:
import { FolderCarousel } from "@/components/FolderCarousel";
<FolderCarousel
folder="/images/news/2025-10"
alt="October 2025 photos"
className="my-8"
/>
Recursive Carousel (Include Subfolders)
To also include images from subfolders:
import { FolderCarousel } from "@/components/FolderCarousel";
<FolderCarousel
folder="/images/parohia/gallery52"
recursive
alt="Complete gallery"
className="my-8"
/>
Multiple Folders
To combine images from multiple folders:
import { FolderCarousel } from "@/components/FolderCarousel";
<FolderCarousel
folders={["/images/news/2025-10", "/images/news/2025-11"]}
alt="October and November photos"
className="my-8"
/>
Combined: Manual Images + Folder
For maximum control, combine specific images with folders:
import { FolderCarousel } from "@/components/FolderCarousel";
<FolderCarousel
images={["/images/cover-special.jpg"]}
folder="/images/news/2025-10"
alt="Complete collection"
className="my-8"
/>
Links
Internal Link (to another page on the site)
Visit the About Us page
External Link
Visit the Patriarchate website
Text Formatting
Ordered Lists
- First step
- Second step
- Third step
Quotes
"This is an important quote or a relevant thought for the post."
— Anonymous Author
Code (if necessary)
Conclusion
A final paragraph that summarizes the post and possibly includes a call to action.
For questions or additional information, please contact us.