mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 18:58:10 +00:00
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
import { readItems } from "@directus/sdk";
|
|
import { directus } from "../directus";
|
|
import { HeroSection } from "@/types";
|
|
|
|
export async function getHome() {
|
|
// Assuming '1' is the primary key for the singleton "home" item
|
|
return directus.request(readItems("home")) as unknown as HeroSection;
|
|
}
|