mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
* feat(changelog): added changelog * finished changelog * updated metadata * reverted env * cleanup --------- Co-authored-by: waleed <waleed>
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import Nav from '@/app/(landing)/components/nav/nav'
|
|
|
|
export default function ChangelogLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className='min-h-screen bg-background font-geist-sans text-foreground'>
|
|
<Nav />
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|