diff --git a/app/(marketing)/layout.tsx b/app/(marketing)/layout.tsx index b36f00c..934b33a 100644 --- a/app/(marketing)/layout.tsx +++ b/app/(marketing)/layout.tsx @@ -1,9 +1,11 @@ +import AnnouncementSection from "@/components/layout/announcement-section"; import SiteFooter from "@/components/layout/site-footer"; import SiteHeader from "@/components/layout/site-header"; export default function layout({ children }: { children: React.ReactNode }) { return (
+
{children}
diff --git a/components/layout/announcement-section.tsx b/components/layout/announcement-section.tsx new file mode 100644 index 0000000..e46fe19 --- /dev/null +++ b/components/layout/announcement-section.tsx @@ -0,0 +1,17 @@ +import React from "react"; +import { cn } from "@/lib/utils"; +import { Button } from "../ui/button"; + +type Props = {}; + +export default function AnnouncementSection({}: Props) { + return ( + + ); +}