mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
* refactor: moved home into landing * improvement(landing): blog dropdown and content updates * improvement: ui/ux * improvement: footer, enterprise, templates,etc. * improvement: blog * fix: reset feature flags to dynamic values * fix: remove unused mobileLabel reference in features tabs * improvement(auth): match oauth button styling with inputs and navbar login * fix: resolve TypeScript errors in landing components - Add explicit FeatureTab interface type for FEATURE_TABS with optional mobileLabel property - Remove reference to undefined MOBILE_STEPS in landing-preview (mobile uses static display anyway) Co-authored-by: Emir Karabeg <emir-karabeg@users.noreply.github.com> * fix(demo-request): remove region from schema and route, delete unused PostGrid --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Emir Karabeg <emir-karabeg@users.noreply.github.com>
20 lines
688 B
TypeScript
20 lines
688 B
TypeScript
import { getNavBlogPosts } from '@/lib/blog/registry'
|
|
import { martianMono } from '@/app/_styles/fonts/martian-mono/martian-mono'
|
|
import Footer from '@/app/(landing)/components/footer/footer'
|
|
import Navbar from '@/app/(landing)/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>
|
|
)
|
|
}
|