Files
sim/apps/sim/app/changelog/layout.tsx
Waleed 68df95906f feat(changelog): added changelog and gh action to auto-release (#1423)
* feat(changelog): added changelog

* finished changelog

* updated metadata

* reverted env

* cleanup

---------

Co-authored-by: waleed <waleed>
2025-09-22 21:35:21 -07:00

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>
)
}