Skip to content

Commit

Permalink
create and use section content container
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewheeler committed Dec 11, 2024
1 parent b18957d commit 30b48de
Show file tree
Hide file tree
Showing 2 changed files with 195 additions and 181 deletions.
8 changes: 8 additions & 0 deletions src/app/products/_ui/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ const SectionSubheader = ({ children }: SectionHeaderProps) => {
);
};

interface SectionContentContainerProps {
children: React.ReactNode;
}
const SectionContentContainer = ({ children }: SectionContentContainerProps) => {
return <div className="flex flex-col gap-10">{children}</div>;
};

interface GithubNavProps {
version: string;
githubHref: string;
Expand Down Expand Up @@ -295,4 +302,5 @@ export {
HaveAQuestionSection,
GettingStartedProcessList,
Video,
SectionContentContainer,
};
Loading

0 comments on commit 30b48de

Please sign in to comment.