3 Commits

3 changed files with 17 additions and 4 deletions

View File

@@ -183,6 +183,14 @@ export default function LandingPage() {
/> />
</div> </div>
<div className="flex justify-center gap-4 py-8">
<span className="text-4xl"></span>
<span className="text-4xl"></span>
<span className="text-4xl"></span>
<span className="text-4xl"></span>
<span className="text-4xl"></span>
</div>
<div id="faq-section" data-section="faq-section"> <div id="faq-section" data-section="faq-section">
<FaqBase <FaqBase
title="Frequently Asked Questions" title="Frequently Asked Questions"

View File

@@ -4,18 +4,18 @@
/* --background: #f7f6f7;; /* --background: #f7f6f7;;
--card: #1a1a1a;; --card: #1a1a1a;;
--foreground: #ffff00;; --foreground: #000000;;
--primary-cta: #ffcc00;; --primary-cta: #ffcc00;;
--secondary-cta: #ffff00;; --secondary-cta: #ffcc00;;
--accent: #ff9900;; --accent: #ff9900;;
--background-accent: #333300;; */ --background-accent: #333300;; */
--background: #000000;; --background: #000000;;
--card: #1a1a1a;; --card: #1a1a1a;;
--foreground: #ffff00;; --foreground: #000000;;
--primary-cta: #ffcc00;; --primary-cta: #ffcc00;;
--primary-cta-text: #f7f6f7;; --primary-cta-text: #f7f6f7;;
--secondary-cta: #ffff00;; --secondary-cta: #ffcc00;;
--secondary-cta-text: #0c1325;; --secondary-cta-text: #0c1325;;
--accent: #ff9900;; --accent: #ff9900;;
--background-accent: #333300;; --background-accent: #333300;;

View File

@@ -9,6 +9,7 @@ import { useButtonAnimation } from "@/components/hooks/useButtonAnimation";
import type { LucideIcon } from "lucide-react"; import type { LucideIcon } from "lucide-react";
import type { ButtonConfig, ButtonAnimationType } from "@/types/button"; import type { ButtonConfig, ButtonAnimationType } from "@/types/button";
import type { Avatar } from "@/components/shared/AvatarGroup"; import type { Avatar } from "@/components/shared/AvatarGroup";
import { useRef, useEffect } from "react";
type HeroBillboardBackgroundProps = Extract< type HeroBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps, HeroBackgroundVariantProps,
@@ -67,9 +68,13 @@ interface HeroBillboardProps {
marqueeImageClassName?: string; marqueeImageClassName?: string;
marqueeTextClassName?: string; marqueeTextClassName?: string;
marqueeIconClassName?: string; marqueeIconClassName?: string;
backgroundVideoSrc?: string;
backgroundVideoFallbackSrc?: string;
} }
const HeroBillboard = ({ const HeroBillboard = ({
backgroundVideoSrc,
backgroundVideoFallbackSrc = "https://img.b2bpic.net/free-photo/abstract-luxury-gradient-blue-background_53876-120942.jpg",
title, title,
description, description,
background, background,