mirror of
https://github.com/harivansh-afk/Saas-Teamspace-2.git
synced 2026-04-21 08:02:18 +00:00
initial commit
This commit is contained in:
commit
9963e01acc
158 changed files with 48198 additions and 0 deletions
22
src/features/landing/CenteredHero.tsx
Normal file
22
src/features/landing/CenteredHero.tsx
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
export const CenteredHero = (props: {
|
||||
banner: React.ReactNode;
|
||||
title: React.ReactNode;
|
||||
description: string;
|
||||
buttons: React.ReactNode;
|
||||
}) => (
|
||||
<>
|
||||
<div className="text-center">{props.banner}</div>
|
||||
|
||||
<div className="mt-3 text-center text-5xl font-bold tracking-tight">
|
||||
{props.title}
|
||||
</div>
|
||||
|
||||
<div className="mx-auto mt-5 max-w-screen-md text-center text-xl text-muted-foreground">
|
||||
{props.description}
|
||||
</div>
|
||||
|
||||
<div className="mt-8 flex justify-center gap-x-5 gap-y-3 max-sm:flex-col">
|
||||
{props.buttons}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue