mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-26 10:42:16 -06:00
* add /demo to LP * add best practices * add clovyr logo to lp * new animation, best pracitces, CTA tracking, etc. * update animation
25 lines
669 B
TypeScript
25 lines
669 B
TypeScript
import Footer from "./Footer";
|
|
import MetaInformation from "./MetaInformation";
|
|
import HeaderLight from "./HeaderLight";
|
|
|
|
interface LayoutProps {
|
|
children: React.ReactNode;
|
|
title: string;
|
|
description: string;
|
|
}
|
|
|
|
export default function Layout({ title, description, children }: LayoutProps) {
|
|
return (
|
|
<div className="flex h-screen flex-col justify-between">
|
|
<MetaInformation title={title} description={description} />
|
|
<HeaderLight />
|
|
{
|
|
<main className="max-w-8xl relative mx-auto mb-auto flex w-full flex-col justify-center sm:px-2 lg:px-8 xl:px-12">
|
|
{children}
|
|
</main>
|
|
}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|