Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09e830560d | |||
| 58d0ebb461 |
@@ -10,6 +10,8 @@ import { getButtonProps } from "@/lib/buttonUtils";
|
|||||||
import { Plus } from "lucide-react";
|
import { Plus } from "lucide-react";
|
||||||
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import type { ButtonConfig } from "@/components/cardStack/types";
|
import type { ButtonConfig } from "@/components/cardStack/types";
|
||||||
|
import CardStack from "@/components/cardStack/CardStack";
|
||||||
|
import SectionTitle from "@/components/sectionTitle/SectionTitle";
|
||||||
|
|
||||||
type HeroLogoBillboardBackgroundProps = Extract<
|
type HeroLogoBillboardBackgroundProps = Extract<
|
||||||
HeroBackgroundVariantProps,
|
HeroBackgroundVariantProps,
|
||||||
@@ -89,13 +91,10 @@ const HeroLogoBillboard = ({
|
|||||||
>
|
>
|
||||||
<HeroBackgrounds {...background} />
|
<HeroBackgrounds {...background} />
|
||||||
<div className={cls("w-content-width mx-auto flex flex-col gap-14 md:gap-15 relative z-10", containerClassName)}>
|
<div className={cls("w-content-width mx-auto flex flex-col gap-14 md:gap-15 relative z-10", containerClassName)}>
|
||||||
|
<CardStack>
|
||||||
|
<SectionTitle title={logoText} className={cls("text-foreground", logoClassName)} />
|
||||||
<div className={cls("w-full flex flex-col items-end gap-6 md:gap-8", logoContainerClassName)}>
|
<div className={cls("w-full flex flex-col items-end gap-6 md:gap-8", logoContainerClassName)}>
|
||||||
<div className="relative w-full flex">
|
<div className="relative w-full md:w-1/2">
|
||||||
<FillWidthText className={cls("text-foreground", logoClassName)}>
|
|
||||||
{logoText}
|
|
||||||
</FillWidthText>
|
|
||||||
</div>
|
|
||||||
<div className="relative w-full md:w-1/2" >
|
|
||||||
<TextAnimation
|
<TextAnimation
|
||||||
type={theme.defaultTextAnimation}
|
type={theme.defaultTextAnimation}
|
||||||
text={description}
|
text={description}
|
||||||
@@ -113,7 +112,7 @@ const HeroLogoBillboard = ({
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</CardStack>
|
||||||
{frameStyle === "browser" ? (
|
{frameStyle === "browser" ? (
|
||||||
<div className={cls("w-full overflow-hidden rounded-theme-capped card", mediaWrapperClassName)}>
|
<div className={cls("w-full overflow-hidden rounded-theme-capped card", mediaWrapperClassName)}>
|
||||||
<div className={cls("relative z-1 bg-background border-b border-foreground/10 px-4 py-3 flex items-center gap-4", browserBarClassName)}>
|
<div className={cls("relative z-1 bg-background border-b border-foreground/10 px-4 py-3 flex items-center gap-4", browserBarClassName)}>
|
||||||
|
|||||||
Reference in New Issue
Block a user