- Move services/nextjs to nextjs/ - Move deploy/docker/Dockerfile.prod to Dockerfile - Add GitHub Actions workflows (ci.yml, build.yml) - Remove deploy/, services/, scripts/ folders
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
import { Navbar } from "@/widgets/landing";
|
|
|
|
const MarketingLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return (
|
|
<div className="h-full bg-white dark:bg-[#1F1F1F] space-y-20">
|
|
<Navbar />
|
|
<main className="h-full">{children}</main>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MarketingLayout; |