import getPostMetadata from "@/components/updates/getPostMetadata"; import PostPreview from "@/components/updates/PostPreview"; import Link from "next/link"; export const metadata = { title: 'Home - Government of Southeastern Islands', description: 'The official website of the Government of Southeastern Islands', } export default function Home() { const postMetadata = getPostMetadata(); const postPreviews = postMetadata.slice(0,3).map((post) => ( )); return (

Welcome to Southeastern Islands

The official website of the Government of Southeastern Islands

About Southeastern Islands

Southeastern Islands was founded in July 2023 with the goal of achieving greater autonomy in our regions.

Originally known as Alee Isle Regions, we later became Southeastern Islands before branching out on our own.

We are committed to continuous improvement and growth as small regions.

Latest Updates

{postPreviews}

View more

) }