-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.jsx
More file actions
27 lines (24 loc) · 798 Bytes
/
Copy pathlayout.jsx
File metadata and controls
27 lines (24 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { ArticleJsonLd } from '../../../components/article-json-ld'
import { articleMetadata } from '../../../data/profile'
const details = {
title: 'Why I Built Zaati OS',
description:
'Zaati OS turns the AI tools you already use into a private dashboard for your calendar, inbox, work, finances, news, and goals.',
path: '/posts/zaati-os-tiny-control-room',
publishedTime: '2026-08-24',
modifiedTime: '2026-08-24',
tags: ['artificial intelligence', 'open source', 'personal tools']
}
export const metadata = articleMetadata(details)
export default function ArticleLayout({ children }) {
return (
<>
<ArticleJsonLd
{...details}
datePublished={details.publishedTime}
dateModified={details.modifiedTime}
/>
{children}
</>
)
}