mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
"use client";
|
|
|
|
import { FC, ReactNode } from "react";
|
|
import Image from "next/image";
|
|
import { useTheme } from "next-themes";
|
|
// logo/ images
|
|
import PlaneBackgroundPatternDark from "public/auth/background-pattern-dark.svg";
|
|
import PlaneBackgroundPattern from "public/auth/background-pattern.svg";
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
|
|
|
type TDefaultLayout = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export const DefaultLayout: FC<TDefaultLayout> = (props) => {
|
|
const { children } = props;
|
|
// hooks
|
|
const { resolvedTheme } = useTheme();
|
|
|
|
return (
|
|
<div className="relative">
|
|
<div className="h-screen w-full overflow-hidden overflow-y-auto flex flex-col">
|
|
<div className="container h-[100px] flex-shrink-0 mx-auto px-5 lg:px-0 flex items-center justify-between gap-5 z-50">
|
|
<div className="flex items-center gap-x-2">
|
|
<Image src={BluePlaneLogoWithoutText} height={30} width={30} alt="Plane Logo" className="mr-2" />
|
|
<span className="text-2xl font-semibold sm:text-3xl">Plane</span>
|
|
</div>
|
|
</div>
|
|
<div className="absolute inset-0 z-0">
|
|
<Image
|
|
src={resolvedTheme === "dark" ? PlaneBackgroundPatternDark : PlaneBackgroundPattern}
|
|
className="w-screen h-full object-cover"
|
|
alt="Plane background pattern"
|
|
/>
|
|
</div>
|
|
<div className="relative z-10 w-full px-5 lg:px-0 mb-[100px] flex-grow">{children}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|