mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* chore: fix conflicts * chore: fix conflicts * chore: pause marquee * chore: fix conflicts * chore: fix conflicts * chore: address review comments * chore: fix conflicts * chore: other bug fixes * chore: fix conflicts * chore: fix radius * chore: fix review changes * chore: fix conflicts * chore: revert other * chore: fix conflicts * chore: fix review changes * chore: fix conflicts * chore: fix review changes * chore: fix button state * chore: fix button state * chore: fix review changes * chore: fix lint * chore: fix conflicts * chore: add metadata * chore: fix things * chore: fix overwritten states * chore: fix warnings * chore: fix button state * chore: fix review changes * chore: fix review changes * chore: fix hover state * chore: fix popover * chore: fix review changes * chore: fix review changes
20 lines
682 B
TypeScript
20 lines
682 B
TypeScript
import { getNavBlogPosts } from '@/lib/blog/registry'
|
|
import { martianMono } from '@/app/_styles/fonts/martian-mono/martian-mono'
|
|
import Footer from '@/app/(home)/components/footer/footer'
|
|
import Navbar from '@/app/(home)/components/navbar/navbar'
|
|
|
|
export default async function ChangelogLayout({ children }: { children: React.ReactNode }) {
|
|
const blogPosts = await getNavBlogPosts()
|
|
return (
|
|
<div
|
|
className={`${martianMono.variable} relative min-h-screen bg-[var(--landing-bg)] font-[430] font-season text-[var(--landing-text)]`}
|
|
>
|
|
<header>
|
|
<Navbar blogPosts={blogPosts} />
|
|
</header>
|
|
{children}
|
|
<Footer hideCTA />
|
|
</div>
|
|
)
|
|
}
|